
November 28th, 2003, 05:00 PM
|
|
Registered User
|
|
Join Date: Nov 2003
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
printing unicode to printer object
I'm trying to Print Unicode onto double sided ID badges through a Fargo Printer.
The Designer app works great, I have MS Forms 2.0 Labels displaying Unicode on the form correctly. The first badge side must be printed with the printer object, the second side is a PrintForm. Second side is perfect, the first side prints '???' instead of the correctly displayed Unicode. Works perfectly for non Unicode characters.
Here is a simplified code snippet of the print code.
Printer.FontTransparent = True
Printer.CurrentY = SampleLabel.Top
Printer.ForeColor = SampleLabel.ForeColor
Printer.Font.Size = SampleLabel.FontSize
Printer.Font.Name = SampleLabel.FontName
Printer.Font.Bold = SampleLabel.FontBold
Printer.Font.Strikethrough = SampleLabel.FontStrikethru
Printer.Font.Underline = SampleLabel.FontUnderline
Printer.Font.Italic = SampleLabel.FontItalic
Printer.CurrentX = SampleLabel.Left
|