home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / misc / font / main.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-03-21  |  457 b   |  32 lines

  1. unit Main;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert }
  4. { Project Name: FONT }
  5.  
  6. interface
  7.  
  8. uses
  9.   WinTypes, WinProcs, Classes,
  10.   Graphics, Controls, Forms,
  11.   StdCtrls;
  12.  
  13. type
  14.   TForm1 = class(TForm)
  15.     ListBox1: TListBox;
  16.     procedure FormCreate(Sender: TObject);
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. procedure TForm1.FormCreate(Sender: TObject);
  27. begin
  28.   ListBox1.Items := Screen.Fonts;
  29. end;
  30.  
  31. end.
  32.