M
Microsoft
If I have a form that has a recordset calling info out of a table. How can
I return that data from the recordset to the txtbox in a form?
dim rst as adodb.recordset
dim conn as adodb.connection
set conn = current.project
set rst=new adodb.recordset
rst.open "customers"
do until rst.eof
rst.movenext
loop
Now I have my data. I want to display it in a text boxes on my form that I
can use the recordselector for to move to the next record displaying the
first record first. BOF
I return that data from the recordset to the txtbox in a form?
dim rst as adodb.recordset
dim conn as adodb.connection
set conn = current.project
set rst=new adodb.recordset
rst.open "customers"
do until rst.eof
rst.movenext
loop
Now I have my data. I want to display it in a text boxes on my form that I
can use the recordselector for to move to the next record displaying the
first record first. BOF