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
 
Back
Top