Results 1 to 2 of 2

Thread: printing..how to?

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 1999
    Posts
    12

    Post

    OK, I need help on how I can print a certain document with the Prinet Box that comes with the Common Dialog Control.

    I have
    CommonDialog1.showprint

    But how do I print a document with the settings they made in the showprint (ie- How many pages etc)

    Thanks

  2. #2
    Hyperactive Member Juan Carlos Rey's Avatar
    Join Date
    Aug 1999
    Location
    Mendoza, Argentina
    Posts
    301

    Post

    Here is how: -------
    CommonDialog1.ShowPrinter 'Show Printer Dialog
    BeginPage = CommonDialog1.FromPage
    EndPage = CommonDialog1.ToPage
    NumCopies = CommonDialog1.Copies
    For m = 1 To Numcopies
    Printer.Print Text1.Text
    Printer.EndDoc 'Send a end document to the Printer
    Next m
    -------
    I think you can figure out OK whith this, but if you need more help, see post #009564 in this forum. (I copied this post from there- I'm lazy)



    [This message has been edited by Juan Carlos Rey (edited 11-11-1999).]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width