help! multiple if conditions?
ok... I want my program to check all "Checkboxes" - which it can do... but I want it to check throughout the program (i used a timer) to see if ALL the checkboxes are checked. However, I am not too sure about how I would basically say:
If check1, check2 AND check3.value = true then
msgbox ....
end if...
please help
Re: help! multiple if conditions?
I moved your thread from the Project Communications forum to Classic VB.
Try this :
VB Code:
If Check1.Value = vbChecked And Check2.Value = vbChecked And Check3.Value = vbChecked Then
MsgBox "All checkboxes are checked"
End If
Re: help! multiple if conditions?
So not only is he/she spamming, they are cross posting too:
http://www.vbforums.com/showthread.php?t=344111