How can I check for empty fields after pressing a button??
I have code which makes all Fields value 0....so it should be possible to set all fields which have no data 0.
VB Code:
Sub CmdZero_Click() Dim MyTextBox As Control For Each MyTextBox In Me.Controls If TypeOf MyTextBox Is TextBox Then MyTextBox.Text = "0" Next End Sub




Reply With Quote