Search found 4 matches

by clochard13
Tue Jan 15 2008
Forum: C/C++/C# Community
Topic: [Solved] from vb to c++
Replies: 1
Views: 24758

Solution

Solution :

m_myCtl->Open ((const char *)fileNameIn, "");
m_myCtl->ObjectAttributeStr("Document","Title",fileNameIn);
........
by clochard13
Tue Jan 15 2008
Forum: C/C++/C# Community
Topic: [Solved] file name printing list
Replies: 1
Views: 10170

Solution

Solution:

m_myCtl->ObjectAttributeStr("Document","Title",fileNameIn);
by clochard13
Tue Jan 15 2008
Forum: C/C++/C# Community
Topic: [Solved] from vb to c++
Replies: 1
Views: 24758

[Solved] from vb to c++

i need The equivalent code in c++ for this vb code Private Sub changedocinfo_Click() Dim pdfdoc As New CDIntfEx.Document pdfdoc.Open ("C:\Temp\Test.pdf") pdfdoc.Title = "Some Title" pdfdoc.Author = "Some Author" pdfdoc.Creator = "Some Creator" pdfdoc.Subject =...
by clochard13
Thu Jan 03 2008
Forum: C/C++/C# Community
Topic: [Solved] file name printing list
Replies: 1
Views: 10170

[Solved] file name printing list

I use pdf creator 3 for a c++ program (the program work) code : 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...