Search found 4 matches

by going
Sun Aug 01 2004
Forum: Visual Basic Community
Topic: Merge problem
Replies: 5
Views: 10224

Problem solved

I don't find this kind of documentation but I tried this

...
ObjPdf.Open("back.pdf")
ObjPdf.Merge "test.pdf" , 1+4 'Documentation says only True /False
....

It seems to goes well
by going
Thu Jul 29 2004
Forum: Visual Basic Community
Topic: Merge problem
Replies: 5
Views: 10224

I don't have a free warranty or a maintenance plan but anyway I think to use the merge function in the correct way So I think the problem is due to a bug of the driver. (ver 2.09 ) I have to pay to solve it ? Anyway new versions solve it ? I tried demo version of 2.10 driver but the result is the sa...
by going
Mon Jul 26 2004
Forum: Visual Basic Community
Topic: Merge problem
Replies: 5
Views: 10224

Thanks Joan but I try it
................
ObjPdf.Open("test.pdf")
ObjPdf.Merge "back.pdf" , True
ObjPdf.Save("test2.pdf")
...................

Test.pdf is a multipage document

The result is a ONE page pdf (correctly merged BUT only for the first page )
by going
Fri Jul 23 2004
Forum: Visual Basic Community
Topic: Merge problem
Replies: 5
Views: 10224

Merge problem

I Want to add a background pdf to my multipage pdf I use the code set ObjPdf=.CreateObject("CDintf.Document") ObjPdf.Open("back.pdf") ObjPdf.Merge "test.pdf" , True ObjPdf.Save("testt.pdf") set ObjPdf = Nothing But the result is that the background page lies O...