home *** CD-ROM | disk | FTP | other *** search
/ DOKAN 17 / DOKAN17.iso / Progs / Pjv03dde.zip / PJV03DDE / SRCCODE / SAMPLE3 / JVIEW.DPR < prev    next >
Text File  |  1999-06-18  |  308b  |  17 lines

  1. program jview;
  2.  
  3. uses
  4.   Forms,
  5.   jviewu in 'jviewu.pas' {Form1},
  6.   jviewu2 in 'jviewu2.pas' {Form2};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.Title := 'Pulsar jViewer';
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.CreateForm(TForm2, Form2);
  15.   Application.Run;
  16. end.
  17.