home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / VCL / AppEvents / appevents.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  300 b   |  16 lines

  1. program AppEvents;
  2.  
  3. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  4.  
  5. uses
  6.   Forms,
  7.   main in 'main.pas' {MainForm};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TMainForm, MainForm);
  14.   Application.Run;
  15. end.
  16.