for textboxes, put this in the Form_Load routine
Code:
Set Text1.DataSource = myADO'recordset where you want to store info entered into the combo box
Text1.DataField = "MyField" 'target field name
for combo boxes it is a little differet
Code:
Set Combo1.DataSource = myADO 'recordset where you want to store info entered into the combo box
Set Combo1.RowSource = myOtherADO 'recordset that contains the data that you want to show in the combo box
Combo1.ListField = "ListField" 'field from myOtherADO that contains the values that you want to show in the combo box
Combo1.BoundColumn = "IdListField" 'field from myOtherADO that contains the values that you want to copy into the recordset myADO
Combo1.DataField = "IdDataField" 'field in myADO where you want to copy the values of the bound column