home *** CD-ROM | disk | FTP | other *** search
- program Project1;
- (***************************************************************************)
- (* *)
- (* ##### ##### ##### ##### ##### #### ###### ####### *)
- (* # # # # # # # # # # *)
- (* # # # # ### # #### # # ### # *)
- (* # # # # # # # # # # # *)
- (* ##### ##### ##### ##### ##### #### # # *)
- (* *)
- (***************************************************************************)
- {
- (c) 1995 Cogisoft
- This component is FREE distribution. Use it for your own utilization.
- But you can't sell an application, using this component, without the
- authorization of Cogisoft.
-
- COGISOFT,H⌠tel de MΘziΦres,19 rue Michel Le Comte,75003 PARIS,FRANCE
- Tel:(1)40-65-04-04, FAX:(1)42-72-27-87
-
- NO CODING !!!
- Jerome VOLLET, CompuServe : 100560,3342
- }
- uses
- Forms,
- Unit1 in 'UNIT1.PAS' {Form1},
- Unit2 in 'UNIT2.PAS' {AboutBox};
-
- {$R *.RES}
-
- begin
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TAboutBox, AboutBox);
- Application.Run;
- end.
-