Why the PrintPic method of Trend ActiveX can not work on some laser jet printers?
Some users reported the PrintPic method of Trend ActiveX can not work on some laser jet printers. We have got this error and found these printers have trouble in supporting a standard windows API. But the reason is not clear,may be caused by printer driver. We have provided a solution. Directly output the Image to printer instead of using the PrintPic method. VB Example: Private Sub cmdPrint_Click() Printer.PaintPicture Trend1.Image, 0, 0 End Sub If you use Visual C++,please use the hDC property and StrechBlt function to output the Image to printer.