Printing support in .net

  • Thread starter Thread starter R.A.
  • Start date Start date
R

R.A.

Hi

I wonder what classes are there if any for printing support. I would like to
be able to lables, enveloped and so on. What I need to do is to design the
print layout that will be printed and to have a print preview option.
 
Look in the Windows Forms toolbox. You'll find about five printing objects
you can drop onto your form. Some of them contain good example code. Just
drop one onto your form, select it, and press F1.

- Noah Coad -
Microsoft MVP
 
R.A. said:
Hi

I wonder what classes are there if any for printing support. I would like
to
be able to lables, enveloped and so on. What I need to do is to design the
print layout that will be printed and to have a print preview option.


Yep.. Dot Net being the godly environment it is has this feature.. The
PrintDocument and PrintPreviewDialog classes have all you require.. for a
basic introduction go to
http://www.c-sharpcorner.com/winforms/texteditor.asp



Simon.
 
Back
Top