J
Joe
Hello All,
I need help programming on radio buttons. On a form is an option group with
two radio buttons, daily and monthly. When the user clicks on the Daily
button the cmdDailyPmts command button should be visible. When the user
clicks on the Monthly button the cmdMonthlyPmts command button should be
visible and the cmdDailyPmts should hide. Eventually, the Daily is the
default radio button and the cmdDailyPmts should always be visible.
This is what I have but its not working
IF rdoDaily = 1 THEN
cmdDailyPmts.visible = true
cmdMonthlyPmts.visible = false
else
cmdDailyPmts.visible = false
cmdMonthlyPmts.visible = true
end if
I need help programming on radio buttons. On a form is an option group with
two radio buttons, daily and monthly. When the user clicks on the Daily
button the cmdDailyPmts command button should be visible. When the user
clicks on the Monthly button the cmdMonthlyPmts command button should be
visible and the cmdDailyPmts should hide. Eventually, the Daily is the
default radio button and the cmdDailyPmts should always be visible.
This is what I have but its not working
IF rdoDaily = 1 THEN
cmdDailyPmts.visible = true
cmdMonthlyPmts.visible = false
else
cmdDailyPmts.visible = false
cmdMonthlyPmts.visible = true
end if