Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've created an excel add-in. Now I want to bring it to my excel
application. I would want a toolbar button such that whenever I click on it I want my add-in to work? Any Ideas? --deostroll |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Option Explicit
Private Sub Workbook_BeforeClose(Cancel As Boolean) On Error Resume Next Application.CommandBars("myToolbar").Delete On Error GoTo 0 End Sub Private Sub Workbook_Open() Dim oCB As CommandBar Dim oCtl As CommandBarControl On Error Resume Next Application.CommandBars("myToolbar").Delete On Error GoTo 0 Set oCB = Application.CommandBars.Add(Name:="myToolbar", temporary:=True) With oCB Set oCtl = .Controls.Add(Type:=msoControlButton) With oCtl .BeginGroup = True .Caption = "myButton" .OnAction = "myButton" .FaceId = 27 End With End With End Sub 'To add this, go to the VB IDE (ALT-F11 from Excel), and in 'the explorer pane, select your workbook. Then select the 'ThisWorkbook object (it's in Microsoft Excel Objects which 'might need expanding). Double-click the ThisWorkbook and 'a code window will open up. Copy this code into there, 'changing the caption and action to suit. 'This is part of the workbook, and will only exist with the 'workbook, but will be available to anyone who opens the 'workbook. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "deostroll" wrote in message oups.com... I've created an excel add-in. Now I want to bring it to my excel application. I would want a toolbar button such that whenever I click on it I want my add-in to work? Any Ideas? --deostroll |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Tables in excel- bringing down formulas for new records. | Excel Worksheet Functions | |||
Bringing Data From Access To Excel | Excel Worksheet Functions | |||
Bringing in a Union Query with excel? | Excel Worksheet Functions | |||
Bringing Word doc into Excel | Excel Discussion (Misc queries) | |||
Bringing Excel to the front | Excel Programming |