+ Reply to Thread
Results 1 to 6 of 6

Call addin in macro

Hybrid View

  1. #1
    Registered User
    Join Date
    08-19-2012
    Location
    Germany
    MS-Off Ver
    Excel 2010
    Posts
    50

    Call addin in macro

    Ive tried the following code:
    Sub Diätplaner_Screenshot_EP()
    Dim oAI As AddIn
        Range("A1:L66").Select
        Set oAI = Application.AddIns.Add("D:\...\GraphicsExporter.xlam") ' ... is written out in my my macro, so its not the mistake :)
        oAI.Installed = True
        Application.Run "GraphicExporter.GEX_Run(control as Icontrolribbon) 'Gex_Run is the function that opens the user form of the addin. GraphicExporter is the name of the addin-workbook.
    End Sub
    Somehow it does not work. Do you know whats wrong? I get the error "the macro cant be opened. Maybe macros are disabled..."
    Last edited by Taktiker; 11-03-2012 at 05:16 AM.

  2. #2
    Registered User
    Join Date
    08-19-2012
    Location
    Germany
    MS-Off Ver
    Excel 2010
    Posts
    50

    Re: Call addin in macro

    I changed the descriptioned, because I progressed a little. Still unfixed

  3. #3
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Call addin in macro

    Try this,

    Sub Diätplaner_Screenshot_EP()
        Dim oAI As AddIn
        Dim objDummy As IRibbonControl
        
        Range("A1:L66").Select
        Set oAI = Application.AddIns.Add("D:\...\GraphicsExporter.xlam") ' ... is written out in my my macro, so its not the mistake :)
        
        oAI.Installed = True
        Application.Run "GraphicExporter.GEX_Run", objDummy  'Gex_Run is the function that opens the user form of the addin. GraphicExporter is the name of the addin-workbook.
    End Sub
    Cheers
    Andy
    www.andypope.info

  4. #4
    Registered User
    Join Date
    08-19-2012
    Location
    Germany
    MS-Off Ver
    Excel 2010
    Posts
    50

    Re: Call addin in macro

    thanks a lot. It works. By the way, thanks for writing the addin, I like it^^. But another question: Is there a way that the selected range is instantly renamed in a certain way in the graphicsexport addin (like "EP) [cell value that is a date]")? Or do I have to do it manually every time.

  5. #5
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Call addin in macro

    You can modify the code in the addin,

    code in frmGraphicExporter

    Private Sub m_CaptureCells()
    '
    ' If the current selection is a range AND more than 1 cell AND a contiguous range
    ' then automatically create a picture of it
    '
        Dim strAddress As String
        Dim vntShapeNames As Variant
        
        On Error GoTo ErrCaptureCells
            
        ' check for active selection
        If TypeName(Selection) = "Range" Then
            If Selection.Areas.Count = 1 Then
                If Selection.Cells.Count > 1 Then
                    Set m_rngCells = Selection
                    strAddress = m_rngCells.Cells(1, 1).Address(False, False, xlA1)
                    strAddress = strAddress & "_" & m_rngCells.Cells(m_rngCells.Rows.Count, m_rngCells.Columns.Count).Address(False, False, xlA1)
                    m_rngCells.CopyPicture xlScreen, xlBitmap
                    ActiveSheet.Paste
                    ' pasted shape does not necessarily become the last item
                    ' so use new  selection
                    Set m_objCells = Selection
    ' Change name of cell selection image
                    m_objCells.Name = "EP" & m_rngCells.Cells(1, 1) '"Cells_" & strAddress
                End If
            End If
        End If
        Exit Sub
    
    ErrCaptureCells:
        Set m_rngCells = Nothing
        Set m_objCells = Nothing
        Exit Sub
    End Sub

  6. #6
    Registered User
    Join Date
    08-19-2012
    Location
    Germany
    MS-Off Ver
    Excel 2010
    Posts
    50

    Re: Call addin in macro

    thank you, it works perfectly.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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