Can someone help?
I'm accessing two tables from one form.
I declare my main recordset to get most of the fields needed for my form.
Dim RS as ADODB.Recordset
Now I need to declare another recordset to another table (a lookup table)so I can translate the value of the dropdown combobox into a textfield.
I don't know how to go about doing this.
I tried declaring another recordset,
Dim RS2 as ADODB.Recordset
but then all of the routines associated with the initial recordset, like AddNew, LoadRecord, etc. will be screwed up.
Any suggestions?
I'm accessing two tables from one form.
I declare my main recordset to get most of the fields needed for my form.
Dim RS as ADODB.Recordset
Now I need to declare another recordset to another table (a lookup table)so I can translate the value of the dropdown combobox into a textfield.
I don't know how to go about doing this.
I tried declaring another recordset,
Dim RS2 as ADODB.Recordset
but then all of the routines associated with the initial recordset, like AddNew, LoadRecord, etc. will be screwed up.
Any suggestions?