home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 April A / Pcwk4a98.iso / PROGRAM / DELPHI16 / Calmira / Src / SRC / TASKBAR.DPR < prev    next >
Text File  |  1996-08-15  |  197b  |  15 lines

  1. program Taskbar;
  2.  
  3. uses
  4.   Forms,
  5.   WinProcs,
  6.   Task in 'TASK.PAS' {Bar};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   if HPrevInst <> 0 then exit;
  12.   Application.CreateForm(TBar, Bar);
  13.   Application.Run;
  14. end.
  15.