I've now got a slight problem with the CreateControl function in Access VB. I am writing a simple form designer to make it easy to add questionnaire forms to the database, using the CreateControl method to add checkboxes and textboxes to the form. I would like to be able to add Tab Page controls so that different sections of the paper-based surveys can be represented on one form. I know how to create tab page controls:
Set tbc = CreateControl(frm.Name, acTabCtl, , , , 0, 0, 6000, 5000)
Now I need to know if it is possible (and if so, how) to add controls (i.e. the checkboxes, etc..) to the individual pages on the tab control.
Any assistance would be appreciated.
Thanks
Gareth
Set tbc = CreateControl(frm.Name, acTabCtl, , , , 0, 0, 6000, 5000)
Now I need to know if it is possible (and if so, how) to add controls (i.e. the checkboxes, etc..) to the individual pages on the tab control.
Any assistance would be appreciated.
Thanks
Gareth