TCVance,
I'm getting a Microsoft Visual Basic Error. The error is
Run-time error '424':
Object required
Here is what I got to make it simple.
Table1 FieldA FieldB FieldC FieldD
Table2 Field1 Field2
Query1 SELECT Table2.Field1, Table2.Field2
FROM Table2;
Form FieldA FieldB FieldC FieldD
(FieldC is a Combo Box using Query1 Table2.Field1)
I want Field2 of Query1 to go to Table1.FieldD as soon as I select from Combo Box.
[Event Procedure]
Private Sub C_BeforeUpdate(Cancel As Integer)
FieldD = Field2.Column(2)
End Sub
-----------------
Any suggestions?
Thank you all...