Hello, I was given example Excel VBA code to automate Redi order entry. It works by creating a new object of type "Order", like this:
set hOrder = new Order
I need a late-binding equivalent to this code, but I cannot determine the proper qualified classname to pass to the CreateObject method. When I try this:
set hOrder = CreateObject("RediLib.Order")
I get the error message: "ActiveX component can't create object"
I believe I must be using the wrong qualified-name. Can you please inform me how to do this? I need this code late-binding so it will compile (but not work, which is fine) on machines without Redi Type Library.
Thank you,
-Benny