tim
|
| Posted: 06/11/2002, 12:38 PM |
|
I cant get my images to show up correctly.
They look like
AABBC <--- letters represent images
C
DDEEF
F
GGHHI
I
JJKKL
Here is the code in my form. (only field is image_url) oh ya the navigation doesnt work either
EVENTS
OPEN
i = 0
BEFORE SHOW
point = i/3
'response.write "i: "& i & " point: " & InStr(point, ".") & "<br>"
if InStr(point, ".") = 0 then
SetVar "open", "</tr><tr>"
else
SetVar "open", ""
end if
SetVar "fldimage_url", ToHTML(fldimage_url)
Parse "DListForm1", True
i = i+1
fldimage_url="<img border=""0"" width=""95"" src=""" & fldimage_url & """/>"
I edite the html, took away the <tr></tr> and put {open}
|
|
|
 |
Nicole
|
| Posted: 06/12/2002, 6:13 AM |
|
Tim,
please search for several threads on this discussion board. Hope it'd be helpful.
Also uncomment response.write statement for testing purposes. Once decimal symbol on your system is point (see it in Regional Options) the point position number should appear in every third printed line.
|
|
|
 |
|