
One More Quick Question...
Thanks for the such quick response jw...I appreciate all the help I have
been given on this newsgroup.
Quote:
> Hi Mike,
> Yes, you may place as many statements in an if-block or else-block as you
> wish.
> cheers, jw
> > Is it possible to put two commands for an if and an else. For example:
> > ------------------
> > Private Sub CommandButton2_Click()
> > If CInt(TextBox1) = CInt(Label3) + CInt(Label1) Then
> > MsgBox Message2
> > NumberCorrect = NumberCorrect + 1
> > Else
> > MsgBox Message1
> > NumberWrong = NumberWrong + 1
> > End If
> > End Sub
> > -------------------
> > will that work, and perform both commands if its '=' or not?