home *** CD-ROM | disk | FTP | other *** search
- unit Main;
-
- { Program copyright (c) 1995 by Charles Calvert }
- { Project Name: FONT }
-
- interface
-
- uses
- WinTypes, WinProcs, Classes,
- Graphics, Controls, Forms,
- StdCtrls;
-
- type
- TForm1 = class(TForm)
- ListBox1: TListBox;
- procedure FormCreate(Sender: TObject);
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.FormCreate(Sender: TObject);
- begin
- ListBox1.Items := Screen.Fonts;
- end;
-
- end.
-