Search found 11 matches

by pmeems
Mon Aug 27 2007
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: [Version 3.01]Trying to print A3 landscape
Replies: 9
Views: 14011

New dll

Peter, The support team has sent me a new version of CDIntfNet300.dll with the SetOrientation and SetPapersize exposed.:P @Supprt team: Perhaps it's a good idea if the link is made public. :?: I've seen the code to set the orientation and papersize but I haven't been able to test it yet because my t...
by pmeems
Tue Aug 07 2007
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: [Version 3.01]Trying to print A3 landscape
Replies: 9
Views: 14011

A3 working in version 2.5

It seems to be working in version 2.5. So I'm gonna use that version.
Too bad it's not implemented in v3

Now I have to figure out how to tell my application it should use the 250.dll instead of the 300.dll
by pmeems
Mon Aug 06 2007
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: [Version 3.01]Trying to print A3 landscape
Replies: 9
Views: 14011

SetPaperSize and SetOrientation are not availbable in CDIntfNet. So how do I set them? 1 - that scaling is not enabled in the PDF Printer I'm not scaling, the Word document is A3 Landscape. 2 - that when you print these same files to a physical printer the last file prints properly. The document is...
by pmeems
Mon Aug 06 2007
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: [Version 3.01]Trying to print A3 landscape
Replies: 9
Views: 14011

Thanks Joan, But that doesn't work for me. I'd already read that topic. I've got several physical printers installed, so that's not the problem. As mentioned in my startpost: I've search this forum and I stumbled on the setPaperSize and setPaperOrientation methods, but I can't find those methods in ...
by pmeems
Thu Aug 02 2007
Forum: C/C++/C# Community
Topic: [C#, physical printer]How to print to a physical printer?
Replies: 2
Views: 13726

[C#, physical printer]How to print to a physical printer?

I create several pdf's using Amyuni and some of those pdf's needs to be physical printed. In the feature list of PDF Converter it says Amyuni can print to a physical printer.
I'm looking for some C# code which is doing this, can anybody provide me with some?

Thanks in advanced.

Paul
The Netherlands
by pmeems
Thu Aug 02 2007
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: [Version 3.01]Trying to print A3 landscape
Replies: 9
Views: 14011

[Version 3.01]Trying to print A3 landscape

I've finally got it working to print a Word document without all the pop-ups. I need this because I'm gonna use the app as a windows service. I need to print 5 different documents. 4 of them are A4 portrait and these are going OK. But the last one is A3 landscape and Amyuni is printing it as A4 port...
by pmeems
Wed Jul 25 2007
Forum: C/C++/C# Community
Topic: [PDF Converter]CaptureEvents hangs the printing
Replies: 1
Views: 10372

[PDF Converter]CaptureEvents hangs the printing

I'm trying to build a C# application to convert a MS Word doc into a PDF. I'm trying to handle the events: cdiNet.EnabledPre += new eveEnabledPre(cdiNet_EnabledPre); cdiNet.StartDocPre += new eveStartDocPre(cdiNet_StartDocPre); cdiNet.StartDocPost += new eveStartDocPost(cdiNet_StartDocPost); cdiNet....
by pmeems
Tue Jul 24 2007
Forum: C/C++/C# Community
Topic: [PDF Converter] How to convert as a service = silentmode
Replies: 1
Views: 10568

Catch events

This problem is solved now after a day of Trail&Error. I open the document in my previously created MS Word instance and do a printOut I now only need to know when the page is finished printing so I can close the document. Currently I use a sleep() but I don't like that. So if somebody has some ...
by pmeems
Tue Jul 24 2007
Forum: C/C++/C# Community
Topic: [PDF Converter] How to convert as a service = silentmode
Replies: 1
Views: 10568

[PDF Converter] How to convert as a service = silentmode

I'm using PDF Converter to convert my MS Word documents to pdf. I've got the C# code working. I'm using cdiNet.BatchConvert(filename); to do the job, but this pops up MS Word. When I want to run my code as a windows service or as a sceduled task without logging in as a human it doesn't work because ...
by pmeems
Tue Jul 24 2007
Forum: C/C++/C# Community
Topic: [Doc2pdf]PDf is saved in C:\WINDOWS\system32
Replies: 1
Views: 11141

Solution

I've figured it out.

If you don't use the

Code: Select all

cdiNet.DefaultDirectory
but parse the complete filename with paths in

Code: Select all

cdiNet.DefaultFileName = pdfFile;
the pdf is created where it should be.

I hope it's useful to someone else. Took be all day to figure out :evil:

Paul
by pmeems
Mon Jul 23 2007
Forum: C/C++/C# Community
Topic: [Doc2pdf]PDf is saved in C:\WINDOWS\system32
Replies: 1
Views: 11141

[Doc2pdf]PDf is saved in C:\WINDOWS\system32

I'm trying to convert a MS Word document to a PDF file. It seems to be working only the PDF is saved in C:\WINDOWS\system32 and I don't know why :cry: Here's my code. It's a windows console in VS2005 in c#: My main.cs: class Program { static void Main(string[] args) { string docName = "C:\\Test...