Thanks for the reply
I am doing a
VBA tutorial at:
http://www.vbatutor.com/vbatutor.htm
I'm doing part one Lesson three
If you look at the script for the Check Button, you will see that a Public
variable called 'Ans' has been declared. This means that it can be used by any
script within that project.
Public Ans
____________________________________
Private Sub CommandButton3_Click()
Dim Message
If Ans = 1 then
Message = "TRUE"
Else
Message = "FALSE"
End If
MsgBox ("The Radio Button State is " + Message + "!")
End Sub
HEY !!! IVE JUST PUT IN "AS INTEGER" AND ITS STARTED WORKING OK !!!!!!
I tried the same thing before and got the error messages
Perplexed
Chris