J
Janis
I have a form with 3 option buttons with different procedures in each. If
the user picks option 1 then I want it to do 2 procedures and give the user a
message box. Something is wrong with the message box. I just want it to
print a message with the report date from two globally declared variables.
frRptDate and toRptDate. This is the onclick procedure.
Private Sub Okay_Click()
If optionButton1.Value.true Then
msg.box( "From:" & frRptDate &"To:" &toRptDate,vbCritical,"Report Date")
Private Sub deleteDateRow1()
Private Sub ckForDupesMac()
Else
OptionButton2.Value.true
xxxxx()
Else
OptionButton3.Value.true
xxxxx()
End If
End Sub
the user picks option 1 then I want it to do 2 procedures and give the user a
message box. Something is wrong with the message box. I just want it to
print a message with the report date from two globally declared variables.
frRptDate and toRptDate. This is the onclick procedure.
Private Sub Okay_Click()
If optionButton1.Value.true Then
msg.box( "From:" & frRptDate &"To:" &toRptDate,vbCritical,"Report Date")
Private Sub deleteDateRow1()
Private Sub ckForDupesMac()
Else
OptionButton2.Value.true
xxxxx()
Else
OptionButton3.Value.true
xxxxx()
End If
End Sub