Create Customized Wizard for Data Entry

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I am interested in creating a couple of wizards for my database application,
so that the user can enter data easily.

I am having difficulty in writing the necessary code for the 'back', 'next',
'finish' buttons to make the wizard run properly.

Do you have an insight?

Your help will be greatly appricated!
 
Here's the code for each of the 4 command buttons:

DoCmd.GoToRecord , , acFirst
DoCmd.GoToRecord , , acPrevious
DoCmd.GoToRecord , , acNext
DoCmd.GoToRecord , , acLast

You'll need to perform some conditional tests to avoid errors, like checking
your position.

--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access
 
Back
Top