C Cynthia_D Registered User. Local time Today, 13:40 Joined Jan 12, 2001 Messages 15 Jan 22, 2001 #1 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.
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.
B BarkerD Registered User. Local time Today, 13:40 Joined Dec 1, 1999 Messages 106 Jan 22, 2001 #2 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 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
pdx_man Just trying to help Local time Today, 05:40 Joined Jan 23, 2001 Messages 1,347 Jan 23, 2001 #3 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
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