home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Database / ejemplos / controlusu / Project1.dpr < prev    next >
Encoding:
Text File  |  1999-05-06  |  229 b   |  15 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   client1 in 'client1.pas' {Form1},
  6.   client2 in 'client2.pas' {Form2};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.