Printing PDF Documents
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Hello, good people! How can I print PDF files from C# code? What components are required for this task? Are there any free solutions? Thanks a lot!
-
Hello, good people! How can I print PDF files from C# code? What components are required for this task? Are there any free solutions? Thanks a lot!
-
Hello, good people! How can I print PDF files from C# code? What components are required for this task? Are there any free solutions? Thanks a lot!
Hi, assuming the PDF extension is associated to a program that can open and print PDF files, you could use Process.Start() with a ProcessStartInfo.Verb="Print". :)
Luc Pattyn [My Articles]