![]() |
Bringing the Add-in to excel...?
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 |
Bringing the Add-in to excel...?
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 |
All times are GMT +1. The time now is 06:54 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com