BUG: Must Call API to Print Color Text on Color Printer in VBID: Q84269
|
Visual Basic for Windows does not directly support printing text in color to a color printer.
To print in color, you must first make a call to the Windows API function SetTextColor(). The example below shows how to implement this call into a Visual Basic application to allow for printing of colored text.
Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this problem and will post more information here in the Microsoft Knowledge Base as it becomes available.
The ForeColor property of the Printer object was not fully implemented
in Visual Basic. You can set the property, but the setting has no effect.
To send color output to a color printer, you must use the Windows API
function call SetTextColor() instead of the ForeColor property of the
Printer object.
Do the following to print "Hello" in all of the 16 QBColors:
' Enter the following Declare statement on one, single line:
Declare Function SetTextColor Lib "GDI" (ByVal hDC As Integer,
ByVal crColor As Long) As Long
Sub Form_Click
For i = 0 to 15
x& = SetTextColor(Printer.HDC, QBColor(i))
Printer.Print "Hello"
Next i
Printer.EndDoc
End Sub
Additional query words: buglist1.00 buglist2.00 buglist3.00 2.00 3.00
Keywords :
Version :
Platform :
Issue type :
Last Reviewed: June 21, 1999