Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I have this code, it works really well if I put it in workbook_open() event. But I need the commandbar active when user install the add-in file. and delete it when the add-in is removed Thanks for your help Private Sub Workbook_Open() Dim oCb As CommandBar Dim oCtl As CommandBarButton On Error Resume Next Application.CommandBars("Worksheet Menu Bar").Controls("Import Text").Delete On Error GoTo 0 Set oCb = Application.CommandBars("Worksheet Menu Bar") With oCb Set oCtl = .Controls.Add( _ Type:=msoControlButton, _ temporary:=True) oCtl.Caption = "Import Text" oCtl.Style = msoButtonCaption oCtl.OnAction = "ImportText" End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
try to install a security update, prompted to install PRO11.msi | Setting up and Configuration of Excel | |||
What program do I install to install office 2003 with no prior pro | Excel Discussion (Misc queries) | |||
cant dim as commandbar | Excel Programming | |||
Why does PHStats *NOT* install when I install Analytical ToolPak? | Setting up and Configuration of Excel | |||
commandbar | Excel Programming |