Run sub after form opens

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When a form opens, or more particularly after the controls are populated,
wish to run a sub to populate an unbound combo box.

Try as I might, there doesn't seem to be an appropriate event.

Have I missed something, or does anyone have a suggestion, please?
 
Use the Load event of the form to assign a value to the combo.

For example, if the combo's bound column is a number (such as a company
number), you would assign the number like this:
Me.Combo1 = 99
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top