link

Hi Guys,
I have a picture box and a multi line text box on my form, i cant seem to get the code right to print the image from the picture box and the text in the text box with the text at the bottom of the page,
The code below draws a rectangle on the page but not sure how to get the image drawn in the rectangle
e.Graphics.DrawRectangle(SystemPens.ControlText,
e.PageBounds.X + 98, 298,
e.PageBounds.Width - 196, 604);
then this code writes the text from the textbox, but the text just goes off the page
printInfo.Bounds = new Rectangle(e.PageBounds.X + 100, 300, e.PageBounds.Width - 200, 600);
Calendar.CurrentCalendar.Print(e.Graphics, printInfo);