|
-
Sep 10th, 2004, 01:52 AM
#1
Thread Starter
Member
printing PDF documents?
Hello everyone, How would I go about printing PDF documents? I have all the paths to the pdf files I want to print in an Array declared as "ArrayPDF"
Here is what I have so far:
code:
Private Sub print_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles print.Click
PrintDialog1.Document = PrintDocument1
PrintDialog1.ShowDialog()
Dim r As DialogResult = PrintDialog1.ShowDialog
If r = DialogResult.OK Then
PrintDocument1.Print()
End If
End Sub
So what this does is just show the print dialog screen. How would I tell the printer to print those pdf files? Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|