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
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
I haven't done much testing of this, but you could try it:
The paths are:![]()
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
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
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks