Hi
i want to match a textbox value with value in table, if the textbox value matches the table value then update the data else popup a message box "value not matched"
Ex:
If(Me.Text10 != tblUser.ID) Then
MsgBox "Value Not Matched"
Else
Updatequery
i tried above but not working. how to do this part?