Form has some textbox, i need to check for empty fields. How select all textbox on the form?
May be create variable: Dim TBox AS TextBox
Form has some textbox, i need to check for empty fields. How select all textbox on the form?
May be create variable: Dim TBox AS TextBox
If (TextBox1.Text = "") then
Msgbox "TextBox value is empty"
End If