|
-
Nov 5th, 2005, 01:39 PM
#1
Thread Starter
Addicted Member
problem with option button [resolved]
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
Last edited by sweet_dreams; Nov 5th, 2005 at 01:58 PM.
-
Nov 5th, 2005, 01:44 PM
#2
Re: problem with option button
Try this:
VB Code:
Option Explicit
Private Sub Form_Activate()
Option1.Value = False
Option2.Value = False
End Sub
-
Nov 5th, 2005, 01:54 PM
#3
Thread Starter
Addicted Member
Re: problem with option button
thx dglienna
it was so easy...
...and I am so stupid sometimes
-
Nov 5th, 2005, 01:58 PM
#4
Re: problem with option button
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!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|