home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 February / Chip_2004-02_cd1.bin / zkuste / konfig / download / msic / Demos / 6 / ProcView.dpr < prev    next >
Text File  |  2003-07-09  |  237b  |  15 lines

  1. program ProcView;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {wnd_Main};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.Title := 'Process Viewer';
  12.   Application.CreateForm(Twnd_Main, wnd_Main);
  13.   Application.Run;
  14. end.
  15.