home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Shareware / Programare / pgedri / Source / Demos / StoredProcs / StoredProcs.dpr < prev    next >
Encoding:
Text File  |  2005-04-01  |  195 b   |  14 lines

  1. program StoredProcs;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {frmMain};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TfrmMain, frmMain);
  12.   Application.Run;
  13. end.
  14.