Cynthia_D
01-22-2001, 11:45 AM
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.
|
View Full Version : 2 Page Form Cynthia_D 01-22-2001, 11:45 AM 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. BarkerD 01-22-2001, 11:49 AM 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 01-23-2001, 11:38 AM 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 |