Talk2Tom11 Posted March 18, 2004 Posted March 18, 2004 I was wondering if there was a way to make a label display something when there is text in a text box, and don't display anything when there is nothing in the text box? Quote
*Experts* Volte Posted March 18, 2004 *Experts* Posted March 18, 2004 If TextBox1.Text.Length > 0 Then Label1.Text = "stuff is in the textbox!" Else Label1.Text = "" End If Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.