Project2.~dpr
上传用户:brightee
上传日期:2009-12-07
资源大小:160k
文件大小:0k
源码类别:

GDI/图象编程

开发平台:

Delphi

  1. program Project2;
  2. uses
  3.   Forms,windows,
  4.   Unit1 in 'Unit1.pas' {Form1};
  5. var
  6. hwnd:thandle;
  7. {$R *.RES}
  8. begin
  9.   hwnd:=findwindow('Tform1','looking');
  10.   if hwnd=0 then
  11.   begin
  12.   Application.Initialize;
  13.   Application.Title := 'what are you doing?';
  14.   Application.CreateForm(TForm1, Form1);
  15.   application.ShowMainForm:=false;
  16.   Application.Run;
  17.   end
  18.   else messagebox(0,'program is running!','monitor',mb_ok);
  19. end.