abenitez77
Registered User.
- Local time
 - Today, 09:34
 
- Joined
 - Apr 29, 2010
 
- Messages
 - 141
 
I saved the values of 3 comboboxes to a table and when the form opens, I want those values (default) to be populated in the comboboxes.  I tried doing it like this below...but I get a run-time error 424 (object required).
Me.cmb_Projects.Column(1) = rs!DefProject
Me.cmb_Projects.Column(0) = rs!DefProjectid
Me.cmb_Periods.Column(1) = rs!DefPeriod
Me.cmb_Periods.Column(0) = rs!DefPeriodid
Me.cmb_Options = rs!DefOptions
 Me.cmb_Projects.Column(1) = rs!DefProject
Me.cmb_Projects.Column(0) = rs!DefProjectid
Me.cmb_Periods.Column(1) = rs!DefPeriod
Me.cmb_Periods.Column(0) = rs!DefPeriodid
Me.cmb_Options = rs!DefOptions