hi... im using a recordset to make a query... im doing something like this:
Dim rs and new adodb.recordset
rs.open query, connection
and then i asign all my textboxes to the rs..
text1.text=rs!Value1
text2.text=rs!Value2
and so on...
now when i want to move on the rexordet, i have a button, called next, and it does this:
rs.moveNext
text1.text=rs!Value1
text2.text=rs!value2
and it works fine.. but i want to have a previous button also... but when i do this:
rs.MovePrevious
text1.text=rs!Value1
it sais that the objext cannt have than property or method..
does anybody know how todo that??
thank you very much.
Eli
Dim rs and new adodb.recordset
rs.open query, connection
and then i asign all my textboxes to the rs..
text1.text=rs!Value1
text2.text=rs!Value2
and so on...
now when i want to move on the rexordet, i have a button, called next, and it does this:
rs.moveNext
text1.text=rs!Value1
text2.text=rs!value2
and it works fine.. but i want to have a previous button also... but when i do this:
rs.MovePrevious
text1.text=rs!Value1
it sais that the objext cannt have than property or method..
does anybody know how todo that??
thank you very much.
Eli