My situation is, if the value of textbox = any of the value in a table column then certain results will occur. I just want to know what the code would be for that.
My apologies for any confusion, just want to know the code that looks up value from a table.
Code:
Private Sub TextboxA_AfterUpdate() If TextboxA = (value from table column) Then TextboxB.Forecolor = vbBlack TextboxB.Text = "Signed In" End If End Sub
Comment