' Notice how some images are round and larger than others....
' the "var" contains the image name...
If tblFields.GetKeyAt(j) = "s1" Then
Try
Dim img As ABMImage
img.Initialize(page , "img"&j ,"../images/dumb/"&var, 1.0)
If i Mod 2 = 0 Then
img.IsCircular = True
img.SetFixedSize( 150,130)
Else
img.SetFixedSize( 100,80)
img.IsCircular = False
End If
rCellValues.Add(img)
rCellThemes.Add("nocolor")
Catch
rCellValues.Add("No Photo Assigned")
rCellThemes.Add("nocolor")
End Try
Continue
End If