Home All Groups Group Topic Archive Search About
Author
10 Feb 2006 10:24 PM
baconbits420@gmail.com
i have created a .dat file using a streamwriter and am having troubles
recalling the file for printing to a receipt.  I know to use a
printDialog and a PrintDocument, but how do i set the printDocument to
the document i want?

Any insight would help

Author
10 Feb 2006 11:15 PM
Herfried K. Wagner [MVP]
<baconbits***@gmail.com> schrieb:
>i have created a .dat file using a streamwriter and am having troubles
> recalling the file for printing to a receipt.  I know to use a
> printDialog and a PrintDocument, but how do i set the printDocument to
> the document i want?

What data does the DAT file contain?  You'll have to handle the print
document's 'PrintPage' event, draw the data to be printed onto the page
there ('e.Graphics.DrawString', 'e.HasMorePages') and start printing by
calling the print document's 'Print' method.

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://classicvb.org/petition/>
Author
13 Feb 2006 9:59 PM
baconbits420@gmail.com
Thanks for the help.  I was able to take what you said and find other
examples.  Thanks