A
Aldred@office
Hi,
I ran into a problem which I need to create a form which might have 20+
records from a select statement. One of the field will have a different
select statement depends on what have been selected before.
So, how may I develop a script which the form will generate textboxes
depends on how many records were fetched? Something like:
j=0
for each i in rs
j=j+1
create a textbox
textbox(j) = rs("Something")
rs.movenext
next
I ran into a problem which I need to create a form which might have 20+
records from a select statement. One of the field will have a different
select statement depends on what have been selected before.
So, how may I develop a script which the form will generate textboxes
depends on how many records were fetched? Something like:
j=0
for each i in rs
j=j+1
create a textbox
textbox(j) = rs("Something")
rs.movenext
next