Hi - I'm using Excel 2007 to create an appliation to check mass volumes of data. The tool is working nicely for the most part, but I'd like to make sure the end users have a particular add-in, xyzaddin, running before the first userform is presented.
Is there any way to automate a check for this add in? I'll set it to run on the workbook open and present an option to get it automatically, or get it manually, whichever the user prefers. But, I'd like to start out by doing the check.
Any help is appreciated!
JP
Last edited by JP Romano; 01-26-2009 at 06:11 PM. Reason: Resolved
You can install the Add-In automatically if you know where it is located.Code:Private Sub Workbook_Open() Dim bool_xla As Boolean: bool_xla = AddIns("Name of Your AddIn").Installed If bool_xla = False Then MsgBox "Install Add-In", vbCritical, "Missing Add-In" End Sub
My Recommended Reading:
Volatility
Sumproduct & Arrays
Pivot Intro
Email from XL - VBA & Outlook VBA
Function Dictionary & Function Translations
Dynamic Named Ranges
That's perfect...thanks a million!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks