Project2.~dpr
资源名称:屏幕监视器.rar [点击查看]
上传用户:brightee
上传日期:2009-12-07
资源大小:160k
文件大小:0k
源码类别:
GDI/图象编程
开发平台:
Delphi
- program Project2;
- uses
- Forms,windows,
- Unit1 in 'Unit1.pas' {Form1};
- var
- hwnd:thandle;
- {$R *.RES}
- begin
- hwnd:=findwindow('Tform1','looking');
- if hwnd=0 then
- begin
- Application.Initialize;
- Application.Title := 'what are you doing?';
- Application.CreateForm(TForm1, Form1);
- application.ShowMainForm:=false;
- Application.Run;
- end
- else messagebox(0,'program is running!','monitor',mb_ok);
- end.