Ive got a Form application in VB.NET.
I have many text boxes on one form (about 20). Is there anyway to check them all at once to see if they are empty instead of wr
If TextBox field is empty then the message box will appear saying "Complete Entry!".
TextBox
Dim t For Each t In Me.Controls If TypeOf t Is TextBox Then If t.Text = "" Then MsgBox("Complete Entry!") Exit Sub Exit For End If End If Next