home *** CD-ROM | disk | FTP | other *** search
- program Glyphv;
-
- (*******************************************************************)
- (* Glyph Viewer - version 1.0 - 10/1995 *)
- (* by Stephane BONNELL *)
- (* *)
- (* This program is distributed as freeware. *)
- (* But if you like it, please send me an email or a postcard. *)
- (* EMail: sbonnell@teaser.fr *)
- (* SMail: 24 bvd Arago, 75013 Paris, France *)
- (*******************************************************************)
-
- uses
- Forms,
- Main in 'MAIN.PAS' {fmMain},
- Info in 'INFO.PAS' {InfoBox};
-
- {$R *.RES}
-
- begin
- Application.Title := 'Glyph Viewer';
- Application.CreateForm(TfmMain, fmMain);
- Application.CreateForm(TInfoBox, InfoBox);
- Application.Run;
- end.
-