How to Get running CorelDraw Application object for automation under C# -
i can reference running coreldraw x6 application using vba (in excel), only if explicitly provide empty string pathname argument...
'this fails set appcd = getobject(, "coreldraw.application") 'this works set appcd = getobject("", "coreldraw.application")
under c#, i'm trying coreldraw using getactiveobject, line appears fail:
application = (tapplication)marshal.getactiveobject("coreldraw.application");
any ideas on how object?
edit: looks this question might way go.
Comments
Post a Comment