I am very new to Microsoft Access and I needed some help. I added a combo box to a form and I want the value in that combo box to appear in a table. I was wondering if anyone knew the correct code to do this. I would really appreciate some help. Thank You.
just create a table or use one u have. with a field that you want to add to
create a textfield to hold the value of the combo selection
(this may be the long way around)
Dim MyDB As Database
Dim yourtable As Recordset
Dim intTemp As Integer
Set MyDB = DBEngine.Workspaces(0).Databases(0)
Set yourtable = MyDB.OpenRecordset("yourtable", DB_OPEN_TABLE) 'DB_OPEN_DYNASET if using linked tables