I need help on validating multiple textbox. My application involves 3 textbox where the user would input numeric data and a calculate button. I want to display an "error" msgbox if the user leaves the one or more of the textbox unfilled when clicking on the "calculate" button. The user must enter "zero" in those textbox in order to proceed with calculate. How do I go about on doing that and where do I place it???
Private Sub CommandButton4_Click()
'Calculate all three textboxes
TextBox8.Text = (Val(TextBox7) + Val(TextBox5) + Val(TextBox6)) * 1.15
End Sub
Thanks,
RookieDBO
Private Sub CommandButton4_Click()
'Calculate all three textboxes
TextBox8.Text = (Val(TextBox7) + Val(TextBox5) + Val(TextBox6)) * 1.15
End Sub
Thanks,
RookieDBO