Ok I got it now, thank you everyone for that. Now I have another question. I'm creating an error report from, if a textbox is blank then it'll display a text in another textbox stating "Textbox is blank, please enter a value" etc... So it will look something like this....
Now when TextBoxA is answered, and when the FormCheckButton is clicked for another form review, how do I remove the "TextBoxA cannot be blank, please enter value" message from the ErrorBox? Hopefully all this made sense.
** Edit **
This question was asked in another thread (What is the VB code for looking up a value in a table?). Please post new questions in their own threads in future.
Code:
Private Sub FormCheckButton_Click() If TextboxA = "" Then ErrorBox = "TextBoxA cannot be blank, please enter value" End If
** Edit **
This question was asked in another thread (What is the VB code for looking up a value in a table?). Please post new questions in their own threads in future.
Comment