Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hello
i have created a toolbar menu, but i would like it to appear on opening the workbook and disappear on closing the workbook. any suggestions? thanks mike |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Try something like this under the worksheet object? Private Sub Workbook_Open() Application.CommandBars("Picture").Visible = True End Su -- incjour ----------------------------------------------------------------------- incjourn's Profile: http://www.excelforum.com/member.php...nfo&userid=721 View this thread: http://www.excelforum.com/showthread.php?threadid=49514 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
mike wrote:
hello i have created a toolbar menu, but i would like it to appear on opening the workbook and disappear on closing the workbook. any suggestions? thanks mike Mike Try two auto macros in a module Sub Auto_Open() Application.CommandBars("Special").Visible = True End Sub Sub Auto_Close() Application.CommandBars("Special").Visible = False End Sub "Special" refers to your customised toolbar. Hugo |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
to create more than 2 open-high-low-close graphs in the same chart | Charts and Charting in Excel | |||
Clear Auto Filter on Close (or open) | Excel Discussion (Misc queries) | |||
Macro to Open, then Close another File | Excel Discussion (Misc queries) | |||
how do i create a macro to clear checkboxes and display a message. | Excel Programming | |||
run macro on close & open | Excel Programming |