I have a table called 'serverlst' that has 19 items in it.
What I am trying to do is have a command button on my forms page that will allow me to select 'ALL' the items in my serverlst table.
I am trying to do something like this:
for x = 1 to #items in serverlst table
open for write item x (need the name and not the ID)
print #1, some information
next x
close x
call shell external program
Can someone tell me the correct code for this??
What I am trying to do is have a command button on my forms page that will allow me to select 'ALL' the items in my serverlst table.
I am trying to do something like this:
for x = 1 to #items in serverlst table
open for write item x (need the name and not the ID)
print #1, some information
next x
close x
call shell external program
Can someone tell me the correct code for this??