UserForm help....

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to get a message box to appear when the user doesn't fill in
required information. The following will do that, however, if the userform is
closed, the message will still show up..I am new at all of this so any help
would be greatly appreciated.

Thanks in advance.
Dawn


Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)

Dim mybox As String
mybox = TextBox1.Text
If Not IsEmpty(mybox) And mybox = "" Then
MsgBox "Enter KanBan Number", vbOKOnly

Cancel = True

Else
End If
End Sub
 
Dawn,

Not quite clear. How does the MsgBox show up? If the form is not up, that
code should never execute. The code is in the userform is it not?

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
You are right..the form is up, but if they click cancel to start over(clears
contents) it will show up, also if they click the x to close the userform it
will pop up again.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top