how can I specify a combobox rowsource when entering on a form in

M

Marco

Hello.

how can I specify a combobox rowsource when entering on a form in Add?

Thanks,
Marco
 
K

Klatuu

Use the Load event of the form:

Me.MyCombo.RowSource = "Select Afield From SomeTable;"
 
Top