Hi
I am coding a windows app in C#.
The user enters a part number, clicks the button and information about the part number is displayed on the page, including text and graphics (pictures of the part number).
I am trying to print this. I can print everything other than the graphics.
I don't even know where to start trying to print graphics. I have tried using
and this doesn't work (No overload for method DrawImage takes 1 argument)
If I try this
The paper in the printer just runs through without printing.
Any ideas what I should be doing?
Thanks
Dave
I am coding a windows app in C#.
The user enters a part number, clicks the button and information about the part number is displayed on the page, including text and graphics (pictures of the part number).
I am trying to print this. I can print everything other than the graphics.
I don't even know where to start trying to print graphics. I have tried using
Code:
e.Graphics.DrawImage(Image.FromFile("C:\\Documents and Settings...location......images\\S05.jpg"));
If I try this
Code:
writer.WriteLine(System.Drawing.Image.FromFile(@"\\Server\\idc decipher\\Resources\\S05.jpg"));
Any ideas what I should be doing?
Thanks
Dave

Comment