-
Printing Problem
How can I print Color?
I'm assuming that by using a regular print statement I will not be able to use colored text, so would someone be so nice as to explain what I have to do for the Color that I am using when typing in my text editor to print on paper.
This is what I use to Print!
Code:
PrintDocument1.DefaultPageSettings = PrintPageSettings
StringToPrint = tb1.Text
PrintDialog1.Document = PrintDocument1
Dim result As DialogResult = PrintDialog1.ShowDialog()
If result = DialogResult.OK Then
PrintDocument1.Print()
End If
Thanks for any help!!
-