ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Option Buttons (https://www.excelbanter.com/excel-programming/320939-option-buttons.html)

Patrick Simonds

Option Buttons
 
I have 3 option buttons on my userform:

No Lunch, 30 Minutes, 60 Minutes

I do not seem to know how to group these 3 buttons together so that I can
set 30 minutes as the default and selecting one of the others will clear the
default.



John Green[_4_]

Option Buttons
 
You ou can give the three buttons the same GroupName (in the Properties
window) or you can place them all in a Frame control. This ensures that only
one member can be selected. Change the Value property of the default button
to True.

--
John Green
Sydney
Australia


"Patrick Simonds" wrote in message
...
I have 3 option buttons on my userform:

No Lunch, 30 Minutes, 60 Minutes

I do not seem to know how to group these 3 buttons together so that I can
set 30 minutes as the default and selecting one of the others will clear

the
default.





Charles Harmon

Option Buttons
 
Hi,

You need to set the value of the button to true.
IE: Userform1.Optionbutton2.value = True
You can use this code when you init. the userform.


"Patrick Simonds" wrote in message
...
I have 3 option buttons on my userform:

No Lunch, 30 Minutes, 60 Minutes

I do not seem to know how to group these 3 buttons together so that I can
set 30 minutes as the default and selecting one of the others will clear
the default.




Patrick Simonds

Option Buttons
 
Thanks guys for the quick response.

"Charles Harmon" wrote in message
...
Hi,

You need to set the value of the button to true.
IE: Userform1.Optionbutton2.value = True
You can use this code when you init. the userform.


"Patrick Simonds" wrote in message
...
I have 3 option buttons on my userform:

No Lunch, 30 Minutes, 60 Minutes

I do not seem to know how to group these 3 buttons together so that I can
set 30 minutes as the default and selecting one of the others will clear
the default.






Patrick Simonds

Option Buttons
 
Figured it out:

If OptionButton1.Value = True Then
rng(1, 12) = TimeSerial(0, 0, 0)

ElseIf OptionButton2.Value = True Then
rng(1, 12) = TimeSerial(0, 30, 0)

ElseIf OptionButton3.Value = True Then
rng(1, 12) = TimeSerial(0, 60, 0)
End If

"Patrick Simonds" wrote in message
...
Thanks guys for the quick response.

"Charles Harmon" wrote in message
...
Hi,

You need to set the value of the button to true.
IE: Userform1.Optionbutton2.value = True
You can use this code when you init. the userform.


"Patrick Simonds" wrote in message
...
I have 3 option buttons on my userform:

No Lunch, 30 Minutes, 60 Minutes

I do not seem to know how to group these 3 buttons together so that I
can set 30 minutes as the default and selecting one of the others will
clear the default.









All times are GMT +1. The time now is 11:07 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com