private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e) { //maybe do something here to import background image then print below over the top? using (Font font = new Font("Arial", 10)) e.Graphics.DrawString(companynameTextBox.Text, font, SystemBrushes.WindowText, e.PageBounds.X + 80, 240);
using (Font font = new Font("Arial", 10)) e.Graphics.DrawString(address_1TextBox.Text, font, SystemBrushes.WindowText, e.PageBounds.X + 80, 260); }