Hi:
I want set a font (Century Ghotic) on my project to print a few labels.
Who Can I do this?
Thanks
Printable View
Hi:
I want set a font (Century Ghotic) on my project to print a few labels.
Who Can I do this?
Thanks
This prints a label on a Dymo label writer from my app...
Code:Printer.Orientation = vbPRORLandscape
Printer.Font = "Courier new"
Printer.FontBold = True
Printer.FontSize = 10
Printer.Print
Printer.Print
Printer.Print strName
Printer.FontSize = 8
Printer.Print strASN
Printer.Print
Printer.FontSize = 16
Printer.Print " " & strSSN
Printer.EndDoc
thanks