View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Hide Group Boxes Around Option Buttons

Hi,

There are several places you could put this code, here's one

Private Sub Worksheet_Activate()
ActiveSheet.GroupBoxes.Visible = False
End Sub

Mike

"salqa" wrote:

I need to hide the group box (lines and all) around each set of option
(radio) buttons for an electronic form that goes to customers. It's just for
aesthetic purposes - mgt doesn't want to see the lines! Any/all help is
greatly appreciated.