Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Is it possible to change the border color in a forms group box? I have a
couple of options buttons in groups, however I do not want the black box surrounding the options buttons to show on the spreadsheet. Thank you. |
#2
![]() |
|||
|
|||
![]()
You can hide that border via code--but I don't think you can change the color.
You could run a small macro: Option Explicit Sub testme() 'for just the one named "group box 1") ActiveSheet.GroupBoxes("group box 1").Visible = False 'or for all of them ActiveSheet.GroupBoxes.Visible = False End Sub or just issue the command from the immediate window inside the VBE. Hit Alt-f11 to get to the VBE hit ctrl-g to get to the immediate window Type the one you want: ActiveSheet.GroupBoxes("group box 1").Visible = False ActiveSheet.GroupBoxes.Visible = False and hit enter. You can find the name of the (visible) groupbox by selecting it and looking at the namebox (to the left of the formulabar). (Toggle False to True when you want to see them to modify your groupboxes.) If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm Yvette wrote: Is it possible to change the border color in a forms group box? I have a couple of options buttons in groups, however I do not want the black box surrounding the options buttons to show on the spreadsheet. Thank you. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to create thin cell border | Excel Discussion (Misc queries) | |||
Group buttons from the forms toolbar | Excel Discussion (Misc queries) |