Please help a Novice....I have a very simple Impromptu Macro with dialog box that has only two checkboxes. My question is: how do I know (and use) the value of the boxes that are checked (ie...checkbox1 and 2)?
Here's the dialog:
Begin Dialog colltypeDialog 251, 84, "Select Type of Report"
GroupBox 5, 4, 135, 60, "Select:"
OptionGroup .OptionGroup3
CheckBox 10,20,112,14, "Summary Management Reports ",.CheckBox1
CheckBox 10,40,112,14, "Detailed Reports",.CheckBox2
OkButton 170, 6, 54, 14
CancelButton 170, 22, 54, 14
End Dialog
Dim mydialog as colltypeDialog
On Error Resume Next
Dialog mydialog
Any help would be appreciated. Thanks!
Here's the dialog:
Begin Dialog colltypeDialog 251, 84, "Select Type of Report"
GroupBox 5, 4, 135, 60, "Select:"
OptionGroup .OptionGroup3
CheckBox 10,20,112,14, "Summary Management Reports ",.CheckBox1
CheckBox 10,40,112,14, "Detailed Reports",.CheckBox2
OkButton 170, 6, 54, 14
CancelButton 170, 22, 54, 14
End Dialog
Dim mydialog as colltypeDialog
On Error Resume Next
Dialog mydialog
Any help would be appreciated. Thanks!