home *** CD-ROM | disk | FTP | other *** search
- program Stocks;
-
- uses
- Forms,
- Main in 'MAIN.PAS' {fmMain},
- Browser in 'BROWSER.PAS' {fmMktBrowser},
- Cstchart in 'CSTCHART.PAS' {fmCustChart},
- Custinfo in 'CUSTINFO.PAS' {fmCustInfo},
- Indchart in 'INDCHART.PAS' {fmIndustChart},
- About in 'ABOUT.PAS' {fmAboutBox},
- Custtext in 'CUSTTEXT.PAS' {fmChartText};
-
- {$R *.RES}
-
- begin
- Application.Title := 'Broker''s Command Center';
- Application.CreateForm(TfmMain, fmMain);
- Application.CreateForm(TfmMktBrowser, fmMktBrowser);
- Application.CreateForm(TfmCustChart, fmCustChart);
- Application.CreateForm(TfmCustInfo, fmCustInfo);
- Application.CreateForm(TfmIndustChart, fmIndustChart);
- Application.CreateForm(TfmAboutBox, fmAboutBox);
- Application.CreateForm(TfmChartText, fmChartText);
- Application.Run;
- end.
-