Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printing x amount of times

Status
Not open for further replies.

DUF

Technical User
Mar 10, 2001
107
IE
Hi,
I want to print the info I have on a form by X amount of times, at the moment I press the cmd Print button X amount of thime I want Printed
There must be an better way to do this??
How about bringing up the printer dialog box?????

Please help as I am new to Vb6

Duf
 
Put the commondialog on the form, with 1 command button


Option Explicit

Private Sub Command1_Click()
CommonDialog1.ShowPrinter
Printer.Print "Hi"
Printer.EndDoc
End Sub

David Paulson

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top