Articles   Members Online: 3
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to capture the windows desktop to a form canvas Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
Capture the windows desktop to a form canvas 24-Aug-04
Category
Graphic
Language
Delphi All Versions
Views
428
User Rating
10
# Votes
1
Replies
0
Publisher:
Darley, F. Joe
Reference URL:
			1   
2   unit Unit1;
3   
4   interface
5   
6   uses
7     Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
8     Dialogs, StdCtrls;
9   
10  type
11    TForm1 = class(TForm)
12      Button2: TButton;
13      procedure Button1Click(Sender: TObject);
14      procedure Button2Click(Sender: TObject);
15    private
16      { Private declarations }
17    public
18      { Public declarations }
19    end;
20  
21  var
22    Form1: TForm1;
23  
24  implementation
25  
26  {$R *.dfm}
27  
28  
29  
30  procedure TForm1.Button2Click(Sender: TObject);
31  var
32    DeskTopDC: HDc;
33    DeskTopCanvas: TCanvas;
34    DeskTopRect: TRect;
35  begin
36    DeskTopDC := GetWindowDC(GetDeskTopWindow);
37    DeskTopCanvas := TCanvas.Create;
38    DeskTopCanvas.Handle := DeskTopDC;
39    DeskTopRect := Rect(0, 0, Screen.Width, Screen.Height);
40    Form1.Canvas.CopyRect(DeskTopRect, DeskTopCanvas, DeskTopRect);
41    ReleaseDC(GetDeskTopWindow, DeskTopDC);
42  end;
43  
44  end.
45  


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC