hi,
i have form with 2 option buttons. when the form is shown one of option buttons is checked. How can i make that any of option buttons will NOT be checked when the form is loaded
thanks in advance for help.
sweet_dreams
Printable View
hi,
i have form with 2 option buttons. when the form is shown one of option buttons is checked. How can i make that any of option buttons will NOT be checked when the form is loaded
thanks in advance for help.
sweet_dreams
Try this:
VB Code:
Option Explicit Private Sub Form_Activate() Option1.Value = False Option2.Value = False End Sub
thx dglienna
it was so easy...
...and I am so stupid sometimes
Last year I thought it wasn't possible, but MartinLiss convinced me that it was possible, so I don't think it is at all stupid. Just logical! :)