Hi, I need send to the printer a simple line and a bold line in C#. Why is so complicate? :(
It's so simple in VB:
VB Code:
Printer.FontBold = False Printer.Print "Normal line" Printer.FontBold = True Printer.Print "Bold line"
How can I do the same thing in C#? :confused:
Can you give me an example on how to do this, pls?
