Hello everybody....
can anybody teach me how to print text in different colors? how to set the colors? red, blue or some numeric values?
pls help
urgent
thank you in advance
Printable View
Hello everybody....
can anybody teach me how to print text in different colors? how to set the colors? red, blue or some numeric values?
pls help
urgent
thank you in advance
VB Code:
Private Sub Command1_Click() Printer.ForeColor = vbRed Printer.Print "Red" Printer.ForeColor = &H80C0FF Printer.Print "orange" Printer.EndDoc End Sub