Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi group,
WinXP Pro Office 2003 I have created a userform with a frame and 22 optionbuttons. I have made all optionbuttons hidden (visible=false). What I need to do is when the form is shown to use a range's value as the caption for the optionbuttons and to also make them visible. Not all buttons will always be required, that is why I made them hidden when designing. I have tried several different loops without success. Any help would be greatly appreciated. The buttons are named "PlayerOptBut1, PlayerOptBut2.......PlayerOptBut22" Here is my last attempt: rr = Sheets("RND1").Range("A65536").End(xlUp).Row For i = 2 To rr ButtonCaption = Sheets("RND1").Range("D" & i).Value & ". " & _ Sheets("RND1").Range("C" & i).Value & " " & _ Sheets("RND1").Range("B" & i).Value MatchDayForm.TeamListFrame.PlayerOptBut(i).Caption = ButtonCaption MatchDayForm.TeamListFrame.PlayerOptBut(i).Visible = True Next i Regards Rob |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I don't think you want to include the name of the frame enclosing the option
buttons. - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions http://PeltierTech.com _______ "WizOfAus" wrote in message ups.com... Hi group, WinXP Pro Office 2003 I have created a userform with a frame and 22 optionbuttons. I have made all optionbuttons hidden (visible=false). What I need to do is when the form is shown to use a range's value as the caption for the optionbuttons and to also make them visible. Not all buttons will always be required, that is why I made them hidden when designing. I have tried several different loops without success. Any help would be greatly appreciated. The buttons are named "PlayerOptBut1, PlayerOptBut2.......PlayerOptBut22" Here is my last attempt: rr = Sheets("RND1").Range("A65536").End(xlUp).Row For i = 2 To rr ButtonCaption = Sheets("RND1").Range("D" & i).Value & ". " & _ Sheets("RND1").Range("C" & i).Value & " " & _ Sheets("RND1").Range("B" & i).Value MatchDayForm.TeamListFrame.PlayerOptBut(i).Caption = ButtonCaption MatchDayForm.TeamListFrame.PlayerOptBut(i).Visible = True Next i Regards Rob |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Jon,
Thanks for the prompt reply. I tried the following and received this error "Method or data member not found (Error 461)" --------------------------------------------------------------------- rr = Sheets("RND1").Range("A65536").End(xlUp).Row For i = 2 To rr ButtonCaption = Sheets("RND1").Range("D" & i).Value & ". " & _ Sheets("RND1").Range("C" & i).Value & " " & _ Sheets("RND1").Range("B" & i).Value MatchDayForm.PlayerOptBut(i - 1).Caption = ButtonCaption MatchDayForm.PlayerOptBut(i - 1).Visible = True Next i --------------------------------------------------------------------- I believe the error is in this part of the code "PlayerOptBut(i - 1)". Regards Rob Jon Peltier wrote: I don't think you want to include the name of the frame enclosing the option buttons. - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions http://PeltierTech.com _______ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
X axis captions | Charts and Charting in Excel | |||
createing a dynamic array of buttons with captions loaded from she | Excel Discussion (Misc queries) | |||
How do I put captions on Excel charts? | Charts and Charting in Excel | |||
Userform Captions | Excel Programming | |||
Help! How to get all the command's captions within a CommandBars? | Excel Programming |