W
Wanda
Figured it out. Used unbound check box and did the
following code:
Sub chkCal_Click()
Dim chkCal
Set chkCal = Item.GetInspector.ModifiedFormPages("Video
Conference Rooms").chkCal
If chkCal.Value = vbChecked Then
msgbox "False"
Else
msgbox "This means it was checked."
End If
End Sub
Wanda
following code:
Sub chkCal_Click()
Dim chkCal
Set chkCal = Item.GetInspector.ModifiedFormPages("Video
Conference Rooms").chkCal
If chkCal.Value = vbChecked Then
msgbox "False"
Else
msgbox "This means it was checked."
End If
End Sub
Wanda