Board index » cppbuilder » Printing full screen

Printing full screen

Is there an easy way to print the entire screen ??

I cannot use the Print() method, as I have ActiveX components on a
particular
form which are ignored by this method.

I can get the screen to the clipboard, but then cannot retrieve the
clipboard to print it.

 

Re:Printing full screen


Quote
> Is there an easy way to print the entire screen ??

Yes. You need to decide how reliable it needs to be.

You have your choice of using StretchDraw (lowest
reliablility - free), StretchDIBits (better reliability - free)
or of you need high reliabilty and lots of bellls and
whistles, take a look at TExcellentImagePrinter at:
http://www.code4sale.com/joehecht

For the other  methods, see the Delphi help file,
or go here:

http://www.efg2.com/Lab/Library/Delphi/Printing/Default.htm

Joe

Other Threads