1 2 {I was surprised to find a quick and easy way to get a list of system fonts. I have 3 seen code that are over 15 lines of code this one is 2 lines.}4 5 procedure TForm1.FormCreate(Sender: TObject);
6 begin7 ComboBox1.Items.Assign(Screen.Fonts);
8 ComboBox1.ItemIndex:=0;
9 end;
10 11 procedure TForm1.ComboBox1Change(Sender: TObject);
12 begin13 Label1.Font.Name:= ComboBox1.Text;
14 end;