home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 October / Chip_2001-10_cd1.bin / zkuste / delphi / navody / DICOMSRC.ZIP / Basic.dpr < prev    next >
Text File  |  2000-08-13  |  290b  |  17 lines

  1. program Basic;
  2.  
  3. uses
  4.   Forms,
  5.   DICOM in 'dicom.pas',
  6.   Analyze in 'analyze.pas',
  7.   ebasic in 'ebasic.pas' {eDICOMform};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.Title := 'eDICOM';
  14.   Application.CreateForm(TeDICOMform, eDICOMform);
  15.   Application.Run;
  16. end.
  17.