I was able to print the content of my textboxes and listview using the following codes...
\ for my form
RectangleF srcRect = new Rectangle(0, 0, this.BackgroundImage.Width,
BackgroundImage.Height);
int nWidth = printDocument1.PrinterSettings.DefaultPageSettings.PaperSize.Width;
int nHeight = printDocument1.PrinterSettings.DefaultPageSettings.PaperSize.Height;
RectangleF destRect = new Rectangle(0, 0, nWidth, nHeight);
g.DrawImage(this.BackgroundImage, destRect, srcRect, GraphicsUnit.Pixel);
\ for the content of my textboxes
e.Graphics.DrawString(textBox17.Text, textBox17.Font, new SolidBrush(textBox17.ForeColor), 170, 236); e.Graphics.DrawString(textBox16.Text, textBox16.Font, new SolidBrush(textBox16.ForeColor), 170, 259);
e.Graphics.DrawString(textBox6.Text, textBox6.Font, new SolidBrush(textBox6.ForeColor), 170, 281);
e.Graphics.DrawString(textBox15.Text, textBox15.Font, new SolidBrush(textBox15.ForeColor), 170, 304);
e.Graphics.DrawString(textBox14.Text, textBox14.Font, new SolidBrush(textBox14.ForeColor), 170, 327);
e.Graphics.DrawString(textBox13.Text, textBox13.Font, new SolidBrush(textBox13.ForeColor), 530, 345);
e.Graphics.DrawString(textBox12.Text, textBox12.Font, new SolidBrush(textBox12.ForeColor), 465, 304);
e.Graphics.DrawString(textBox8.Text, textBox8.Font, new SolidBrush(textBox8.ForeColor), 688, 236);
\ for my list view
int[] X = { 78, 170, 205, 595, 690 }; //relative to Left margin
int Y = 400; //relative to Top margin
Font F = listView1.Font;
Brush B = new SolidBrush(listView1.ForeColor);
for (int I = 0; I < listView1.Items.Count; I++)
{
for (int J = 0; J < listView1.Items[I].SubItems.Count; J++)
{
e.Graphics.DrawString(listView1.Items[I].SubItems[J].Text, F, B, X[J], Y);
}
Y += F.Height;
}
I individually plotted the x,y locations of the textboxes which is totally tiring... the thing is in my laptop the program runs perfectly, the textboxes and list box are in their proper positions but when I try it on other monitors with a different resolution the textboxes would naturally be misplaced... The background image prints fine in all resolutions by the way...
Is their a way to maintain the position of my textbox and list box in any screen resolution?