adamdavies
Member
- Joined
- Aug 14, 2003
- Messages
- 5
if i use
e.Graphics.DrawString(TextBox1.Text, New Font("courier new", 12, FontStyle.Regular), Brushes.Black, 200, 100)
e.Graphics.DrawString(TextBox2.Text, New Font("courier new", 12, FontStyle.Regular), Brushes.Black, 200, 100)
e.Graphics.DrawString(TextBox1.Text, New Font("courier new", 12, FontStyle.Regular), Brushes.Black, 100, 500)
I can print to 3 different locations on my a4 page.
does anyone now how i would incooperate this so that i can open a csv file, read the first line
i.e a,b,c
print a to the first e.Graphics.DrawString on page1
print b to the second e.Graphics.DrawString on page1
print c to the third e.Graphics.DrawString on page1
then read the second line
a,b,c again and print this to a new page, page 2
Thanks adam
e.Graphics.DrawString(TextBox1.Text, New Font("courier new", 12, FontStyle.Regular), Brushes.Black, 200, 100)
e.Graphics.DrawString(TextBox2.Text, New Font("courier new", 12, FontStyle.Regular), Brushes.Black, 200, 100)
e.Graphics.DrawString(TextBox1.Text, New Font("courier new", 12, FontStyle.Regular), Brushes.Black, 100, 500)
I can print to 3 different locations on my a4 page.
does anyone now how i would incooperate this so that i can open a csv file, read the first line
i.e a,b,c
print a to the first e.Graphics.DrawString on page1
print b to the second e.Graphics.DrawString on page1
print c to the third e.Graphics.DrawString on page1
then read the second line
a,b,c again and print this to a new page, page 2
Thanks adam