+ Reply to Thread
Results 1 to 16 of 16

execute an Add In

Hybrid View

Blake 7 execute an Add In 05-24-2011, 10:29 AM
tigeravatar Re: execute an Add In 05-24-2011, 10:51 AM
Blake 7 Re: execute an Add In 05-24-2011, 10:58 AM
Blake 7 Re: execute an Add In 05-24-2011, 11:58 AM
Colin Legg Re: execute an Add In 05-24-2011, 12:25 PM
Blake 7 Re: execute an Add In 05-24-2011, 12:34 PM
tigeravatar Re: execute an Add In 05-24-2011, 03:07 PM
Blake 7 Re: execute an Add In 05-24-2011, 04:37 PM
Blake 7 Re: execute an Add In 05-24-2011, 05:00 PM
Blake 7 Re: execute an Add In 05-25-2011, 06:07 AM
Blake 7 Re: execute an Add In 05-25-2011, 08:06 AM
tigeravatar Re: execute an Add In 05-25-2011, 11:04 AM
Blake 7 Re: execute an Add In 05-25-2011, 11:14 AM
Blake 7 Re: execute an Add In 05-25-2011, 12:13 PM
tigeravatar Re: execute an Add In 05-25-2011, 12:51 PM
Blake 7 Re: execute an Add In 05-25-2011, 03:39 PM
  1. #1
    Valued Forum Contributor Blake 7's Avatar
    Join Date
    10-01-2010
    Location
    Bogota, Colombia
    MS-Off Ver
    Excel 2010 64 bit and Excel 2007,
    Posts
    1,377

    Re: execute an Add In

    Hi Guys - update time!

    I applied the following code to a workbook and saved as an add-in. I then checked it on the addins available bit and got the new addins tab on my ribbon with the my macro button name.
    The problem occurs when i hit the button - i get the msg cannot run the macro moveXLAMMy Macro The Macro may not be available in this workbook or Macros may be disabled.

    I have them enabled so it must be the first one!

    Can anyone suggest a way out or what i have done wrong. Its the first time I have tried this so the water is a little (alot) murky!

    Cheers

    Sub move()
    ActiveWorkbook.ActiveSheet.Columns("B:Z").SpecialCells(xlCellTypeBlanks).Delete Shift:=xlToLeft
    End Sub
    
    Private Sub Workbook_AddinInstall()
    
    On Error Resume Next
    
    'First thing the code does is remove the button if it hasn't been removed already
    Application.CommandBars("Worksheet Menu Bar").Controls("MyMacro").Delete
    
    'The above line results in an error if it has already been removed
    'So this On Error Resume Next ignores if there's an error and just resumes starting below
    
    Set MyMacro = Application.CommandBars("Worksheet Menu Bar").Controls.Add
    With MyMacro
    .Caption = "My Macro Button Name"
    .Style = msoButtonCaption
    .OnAction = "MyMacro" 'In your case this would be "move"
    End With
    
    End Sub
    
    Private Sub Workbook_AddinUninstall()
    
    On Error Resume Next
    Application.CommandBars("Worksheet Menu Bar").Controls("MyMacro").Delete
    
    End Sub
    Last edited by Blake 7; 05-25-2011 at 06:49 AM.
    Blake 7

    If your question has been answered, please click EDIT in your original post, click GO ADVANCED and set the PREFIX box to SOLVED.

    If any member's response has helped to solve your problem, please consider using the scales icon on the top right of their post to show your appreciation.

    http://failblog.org/

  2. #2
    Valued Forum Contributor Blake 7's Avatar
    Join Date
    10-01-2010
    Location
    Bogota, Colombia
    MS-Off Ver
    Excel 2010 64 bit and Excel 2007,
    Posts
    1,377

    Re: execute an Add In

    Hi Guys - am having great difficulty here in spite of the kind help i have already recieved from Tiger and Colin yet I am still not able to achieve my desired result which is:

    To run this code

    Sub move()
        ActiveWorkbook.ActiveSheet.Columns("A:Z").SpecialCells(xlCellTypeBlanks).Delete Shift:=xlToLeft
    End Sub
    Via a command button on the ribbon.

    I need to set this up for collegues.

    Sub move()
    ActiveWorkbook.ActiveSheet.Columns("B:Z").SpecialCells(xlCellTypeBlanks).Delete Shift:=xlToLeft
    End Sub
    
    So far I have entered this code in ThisWorkbook
    
    Private Sub Workbook_AddinInstall()
    
    On Error Resume Next
    
    'First thing the code does is remove the button if it hasn't been removed already
    Application.CommandBars("Worksheet Menu Bar").Controls("MyMacro").Delete
    
    'The above line results in an error if it has already been removed
    'So this On Error Resume Next ignores if there's an error and just resumes starting below
    
    Set MyMacro = Application.CommandBars("Worksheet Menu Bar").Controls.Add
    With MyMacro
    .Caption = "My Macro Button Name"
    .Style = msoButtonCaption
    .OnAction = "MyMacro" 'In your case this would be "move"
    End With
    
    End Sub
    
    Private Sub Workbook_AddinUninstall()
    
    On Error Resume Next
    Application.CommandBars("Worksheet Menu Bar").Controls("MyMacro").Delete
    
    End Sub
    But am getting an error message "The Macro may not be available in this workbook or Macros may be disabled"

    Any help appreciated as am struggling here. Cheers

  3. #3
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: execute an Add In

    Blake 7,

    The problem is you didn't adjust the sample code for your needs. I named everything "MyMacro", and your macro is called "move" so to make it work for you, you can use the following:

    Private Sub Workbook_AddinInstall()
    
        On Error Resume Next
        Application.CommandBars("Worksheet Menu Bar").Controls("Move").Delete
        
        Set Blake7Macro = Application.CommandBars("Worksheet Menu Bar").Controls.Add
        With Blake7Macro
            .Caption = "Move"
            .Style = msoButtonCaption
            .OnAction = "move"
        End With
    
    End Sub


    Same goes for the Uninstall portion:
    Private Sub Workbook_AddinUninstall()
    
        On Error Resume Next
        Application.CommandBars("Worksheet Menu Bar").Controls("Move").Delete
    
    End Sub


    ~tigeravatar

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1