In VBA, how can I dynamically add controls to an Access from at runtime.
F frustratedbob Jul 19, 2005 #1 In VBA, how can I dynamically add controls to an Access from at runtime.
A Allen Browne Jul 19, 2005 #2 You cannot do that unless you open the form in design view, e.g.: DoCmd.OpenForm "Form1", acDesign Then see help on CreateControl(). This approach is generally not useful unless you are writing your own wizards.
You cannot do that unless you open the form in design view, e.g.: DoCmd.OpenForm "Form1", acDesign Then see help on CreateControl(). This approach is generally not useful unless you are writing your own wizards.