+ Reply to Thread
Results 1 to 2 of 2

VBA Solver Reference

Hybrid View

  1. #1
    Registered User
    Join Date
    09-20-2009
    Location
    Canada
    MS-Off Ver
    Excel 2007
    Posts
    5

    VBA Solver Reference

    Hello,

    I just finished writing a code that involves Solver in excel 2007. How can i make sure that the code will make reference to solver even in different versions of excel?

    thanks in advance

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: VBA Solver Reference

    I haven't done much testing of this, but you could try it:
    Function LoadAddIn(sFullPath As String) As Boolean
        Dim i       As Long
    
        For i = 1 To ThisWorkbook.VBProject.References.Count
            Debug.Print ThisWorkbook.VBProject.References(i).FullPath
            If ThisWorkbook.VBProject.References(i).FullPath = sFullPath Then
                LoadAddIn = True
                Exit Function
            End If
        Next i
        
        On Error Resume Next
        ThisWorkbook.VBProject.References.AddFromFile sFullPath
        LoadAddIn = Err = 0
        On Error GoTo 0
    End Function
    The paths are:

    Office 2007: C:\Program Files\Microsoft Office\OFFICE12\Library\SOLVER.xlam

    Office 2003: C:\Program Files\Microsoft Office\OFFICE11\Library\SOLVER.xla

    Office XP: C:\Program Files\Microsoft Office\OFFICE10\Library\SOLVER.xla

    You can use Application.Version to tell you what version you're running.
    Entia non sunt multiplicanda sine necessitate

+ 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