How to print a PDF file in .NET?

  • Thread starter Thread starter Fir5tSight
  • Start date Start date
F

Fir5tSight

Hi All,

I have a class defined for PDF file. I have a method called "Print"
that should print this PDF file:

override public void Print()
{
// TODO print pdf! What shall I do to get it printed?
}

Any advice?

-Emily
 
Hello Fir5tSight,

Have tried smth from this http://groups.google.com/groups/search?q=dotnet+print+pdf
?

F> I have a class defined for PDF file. I have a method called "Print"
F> that should print this PDF file:
F>
F> override public void Print()
F> {
F> // TODO print pdf! What shall I do to get it printed?
F> }
F> Any advice?

---
WBR,
Michael Nemtseva [C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangel
 
Hi Michael,

Thanks for the sending me the link!

There are sample VB.NET code for printing a pdf file. However, I am
using C#.NET. Any input?

-Emily
 
Back
Top