Query in form

  • Thread starter Thread starter pechoi
  • Start date Start date
P

pechoi

Hi all,
I am a new in Access VBA (pretty good with other VBA). How can I use
form to VBA in form? I want to add combobox that values that I added. I
tried to do that in form_load function but no sucess?

Thx
 
Hi,


You can add controls in your form through VBA code, but you have to do it
when the form is open in design mode (minimized is OK, that is what some
wizards do), but you may find easier to create the controls in advance,
INVISIBLE, and turn them visible as required, since that solution does not
oblige your form to be in design mode, but can stay in view mode, which is
preferable, in general).



Hoping it may help,
Vanderghast, Access MVP
 
Back
Top