Hyperion hijacks code and causes macros to fail
I am using VBScript to load a new instance of MS-Excel and open a custom form. This process has worked for the last five years without issue.
Now, only for users who have Hyper installed, the described load fails. I believe this is because Hyper uses the application object causing the code to become confused.
Does anyone have any ideas as to how this can be corrected? My script is below:
Set oExcel = CreateObject("Excel.Application")
Set oBook = oExcel.Workbooks.Add(sFullName)
oExcel.Visible = True
As an alternative, does anyone know of any code I could run to see whether Hyperion is installed on the user's machine?