Heym how do I print a textbox and a listview to my printer from a vb.net app?
thanx!
Printable View
Heym how do I print a textbox and a listview to my printer from a vb.net app?
thanx!
This example will show you the basics of printing...
http://samples.gotdotnet.com/quickst...ngExample1.src
if you re-write
streamToPrint = new StreamReader ("PrintMe.Txt")
to
streamToPrint = new StreamReader (textbox1.text)
then it should allow the textbox's data to be printed. I haven't tried it though.