[Solved] file name printing list

If you are a C/C++/C# developer and have any questions about using our products from your application here is the place to post them.
Post Reply
clochard13
Posts: 4
Joined: Fri Dec 28 2007

[Solved] file name printing list

Post by clochard13 »

I use pdf creator 3 for a c++ program (the program work) code :

Code: Select all

CPDFCreactiveX	*m_myCtl;
m_myCtl = new CPDFCreactiveX;
m_myCtl->SetLicenseKey(........
m_myCtl->Open ((const char *)fileNameIn, "");
m_myCtl->Print("",false);
i want to change the name of the document in the printing list (actually there is pdfCreator,pdfCreator....)

thank :D
clochard13
Posts: 4
Joined: Fri Dec 28 2007

Solution

Post by clochard13 »

Solution:

m_myCtl->ObjectAttributeStr("Document","Title",fileNameIn);
Post Reply