home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / m_to_r / picklist / testlb.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  259 b   |  15 lines

  1. program Testlb;
  2.  
  3. uses
  4.   Forms,
  5.   Testpick in 'TESTPICK.PAS' {Form1},
  6.   Od_test in 'OD_TEST.PAS' {PoemDialog};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TPoemDialog, PoemDialog);
  13.   Application.Run;
  14. end.
  15.