Hi all, I have an application that has been happily loading Excel files using the late binding method (due to the client having different versions of Excel throughout the organisation).

However one machine only has Office 2010 Starter Edition installed, and the below code is pulling back an "ActiveX can't create object" error.

oXL = CreateObject("Excel.Application")

Does anyone know what I should replace "Excel.Application" with for Excel Starter Edition? I'd assume it would just be the same but apparently not!

Thank you.