2 Page Form

Cynthia_D

Registered User.
Local time
Today, 13:40
Joined
Jan 12, 2001
Messages
15
How do I create a 2-page form. Right now I have two seperate forms that I want to be in the same form, but on two different pages.
 
Use the Tab Control.

Depending on your table structure, you could link sub-forms onto multiple pages, or if you have a large table, group the controls on the different pages.

Duane Barker
 
Use the page break control. It is on the toolbox toolbar. Use command buttons and code to go from page to page.

public sub command1_click()
docmd.gotopage 1
end sub

public sub command2_click()
docmd.gotopage 2
end sub
 

Users who are viewing this thread

Back
Top Bottom