I REALLY DONT UNDERSTAND YOUR PROBLEM BUT I CAN GIVE U CODES FOR NEXT FIRST LAST AND PREVIOUS COMMAND BUTTONS
double click on next command button
private subcmdnext
Adodc1.recordset.movenext
text1.text=Adodc1.recordset.fields ("the name u kept in ur database for text1")
do same for all ur textboxes
double click prev comman dbutton
private subcmdpre]
adodc1.recordset.fields.moveprevious
text1.text=Adodc1.recordset.fields ("the name u kept in ur database for text1")
do same for all ur textboxes
private sub cmd last
Adodc1.recordset.fields.movelast
adodc1.recordset.fields.moveprevious
text1.text=Adodc1.recordset.fields ("the name u kept in ur database for text1")
do same for all ur textboxes
private sub cmdfirst
adodc1.recordset.fields.movefirst
adodc1.recordset.fields.moveprevious
text1.text=Adodc1.recordset.fields ("the name u kept in ur database for text1")
do same for all ur textboxes
I DONT KNOW THAT THIS CODES ARE THE SAME WHICH U WANT BUT JUST TRY THEM MAY BE IT WORK
|