LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,510
Default hide and unhide option buttons

I have realized that you could run into problems making your option buttons
visible so that you can get into properties to check their names so here is a
method of doing so if required:-

Ensure that the worksheet with the option buttons is your selected one.
Alt/F11 to open VBA editor.
Click on menu item Insert then Module.
Copy the macro below and paste it into the module.
Click anywhere within the code (so the cursor is within the code)
Press F5 to run the code.
Alt/F11 to return to the worksheet.
All buttons should be visible.

To get back to the code if required during your development:-
Alt/F11 and then expand modules and double click Module1.


Sub Identify_Controls()
For Each shp In ActiveSheet.Shapes
shp.Visible = True
Next
End Sub



Regards,

OssieMac



 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hide Unhide option fedosomwan Excel Worksheet Functions 1 February 18th 10 04:32 PM
Hide Unhide Buttons Microsoft Communities[_2_] Excel Discussion (Misc queries) 4 December 26th 09 03:18 PM
Hide/Unhide Buttons kdog Excel Discussion (Misc queries) 2 October 12th 06 07:38 PM
I am missing something (hide / unhide rows with buttons) Turquoise_dax[_8_] Excel Programming 2 June 20th 06 06:01 PM
Hide/Unhide Option - Need to consider all options! Turquoise_dax Excel Discussion (Misc queries) 3 June 15th 06 09:17 PM


All times are GMT +1. The time now is 03:35 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"