hello
i have a form with two fields in it: auftrag and vl_01 those are bounded to a query and when i fill out these data the data is inserted to the bounded table.
i want when i enter the auftrag the vl_01 will be automatically filled.
i wrote the below code in after update event of auftrag but i have the following errrror, can you help me pleasE??
error 2113 : the value you entered is not valid for this field
my code is this:
Private Sub Label_AfterUpdate()
Me.Prüfplatz.Value = "select VL-01 from qry_reifen_edit"
End Sub
i have a form with two fields in it: auftrag and vl_01 those are bounded to a query and when i fill out these data the data is inserted to the bounded table.
i want when i enter the auftrag the vl_01 will be automatically filled.
i wrote the below code in after update event of auftrag but i have the following errrror, can you help me pleasE??
error 2113 : the value you entered is not valid for this field
my code is this:
Private Sub Label_AfterUpdate()
Me.Prüfplatz.Value = "select VL-01 from qry_reifen_edit"
End Sub