Results 1 to 2 of 2
  1. #1
    cuzza69 is offline Novice
    Windows XP Access 2003
    Join Date
    Jan 2010
    Posts
    1

    merging PDF files


    I am using PDFCreator to print reports to files which works fine. Is there a way to merge the files into one (1) pdf file? I am using VB code to do this.

  2. #2
    sesproul is offline Advanced Beginner
    Windows Vista Access 2007
    Join Date
    Jan 2010
    Posts
    50

    c# code to do this

    I am not familiar with this app,(but I am definately interested in what it may do) here is a snippet of code that performs the same action but in c#










    Code:
    // Wait till doc gets queued up.
    while(creator.cCountOfPrintjobs != [Your COUNT of documents printed]);
    
    // Tell PDFCreator to combine all the documents.
    creator.cCombineAll();
    
    // Start the printer.
    creator.cPrinterStop = false;
    
    // Wait till all doc get converted to pdf. 
    while(creator.cCountOfPrintjobs != 0);

    I've done similar exercises when writing vb code for the Quickbooks IDE, often the methods of the objects are identical, only the syntax is different.


    Please post the code if you get it to work.

    Here is the website that I located the code,http://angrez.blogspot.com/


    Thanks


    Steve

Please reply to this thread with any new information or opinions.

Similar Threads

  1. .ocx Files Errors
    By darshita in forum Import/Export Data
    Replies: 9
    Last Post: 12-07-2009, 07:36 AM
  2. Merging 2 tables
    By todavy in forum Queries
    Replies: 4
    Last Post: 12-02-2009, 10:12 AM
  3. Replies: 8
    Last Post: 11-04-2009, 04:22 AM
  4. Merging
    By bailey537 in forum Queries
    Replies: 0
    Last Post: 07-14-2009, 04:14 AM
  5. Merging values in Access
    By jains in forum Forms
    Replies: 0
    Last Post: 06-08-2009, 09:31 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums