pdf - PDFCreator V2.1 C++ COM startup -
i'm trying use new pdfcreator (v2.1). clspdfcreator no longer there, , examples i've found in searches use old system.
they supply examples in other languages, none in c++ (mfc windows). think once have established connection pdfcreator can follow examples in other languages.
a fragment of old version:
ccomptr<pdfcreator::_clspdfcreator> pdfobject; hresult hr = pdfobject.cocreateinstance(l"pdfcreator.clspdfcreator"); pdfobject->cstart("/noprocessingatstartup", 1);
and i've been trying guess new version equivalent should be, no success. example:
ccomptr<pdfcreator::ipdfcreator> pdfobject; hresult hr = pdfobject.cocreateinstance(l"pdfcreator.ipdfcreator");
compiles hr signals failure...
hr gives me "incorrect interface string" (i'm translating italian): hr = 0x800401f3 stringa dell'interfaccia non valida. –
pdfcreator makers have told me documentation , proper support com available in v2.2
Comments
Post a Comment