G
Guest
I have form with the fields ind_no and protocol_no. After the protocol number
is entered in, i want data in the ind_no field to appear. I but it gives me
a message saying that there's a missing operator.
Private Sub protocol_no_AfterUpdate()
Dim mysql As String
mysql = "SELECT [General SAE].ind_no"
mysql = mysql + "FROM [General SAE]"
mysql = mysql + "WHERE ([General SAE].protocol_no)=[Form_add new
form].protocol_no.value"
DoCmd.RunSQL (mysql)
End Sub
is entered in, i want data in the ind_no field to appear. I but it gives me
a message saying that there's a missing operator.
Private Sub protocol_no_AfterUpdate()
Dim mysql As String
mysql = "SELECT [General SAE].ind_no"
mysql = mysql + "FROM [General SAE]"
mysql = mysql + "WHERE ([General SAE].protocol_no)=[Form_add new
form].protocol_no.value"
DoCmd.RunSQL (mysql)
End Sub