home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / stocks.pak / STOCKS.DPR < prev    next >
Encoding:
Text File  |  1995-08-24  |  801 b   |  26 lines

  1. program Stocks;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {fmMain},
  6.   Browser in 'BROWSER.PAS' {fmMktBrowser},
  7.   Cstchart in 'CSTCHART.PAS' {fmCustChart},
  8.   Custinfo in 'CUSTINFO.PAS' {fmCustInfo},
  9.   Indchart in 'INDCHART.PAS' {fmIndustChart},
  10.   About in 'ABOUT.PAS' {fmAboutBox},
  11.   Custtext in 'CUSTTEXT.PAS' {fmChartText};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.Title := 'Broker''s Command Center';
  17.   Application.CreateForm(TfmMain, fmMain);
  18.   Application.CreateForm(TfmMktBrowser, fmMktBrowser);
  19.   Application.CreateForm(TfmCustChart, fmCustChart);
  20.   Application.CreateForm(TfmCustInfo, fmCustInfo);
  21.   Application.CreateForm(TfmIndustChart, fmIndustChart);
  22.   Application.CreateForm(TfmAboutBox, fmAboutBox);
  23.   Application.CreateForm(TfmChartText, fmChartText);
  24.   Application.Run;
  25. end.
  26.