Registriert seit: 23. Jun 2003
416 Beiträge
Delphi 2006 Professional
|
24. Jun 2003, 20:00
zu 1.:
Delphi-Quellcode:
Combobox1.Items.Clear;
for i := 0 to Screen.Fonts.Count - 1 do
Combobox1.Items.Add(Screen.Fonts.Strings[i];
zu 2.:
Delphi-Quellcode:
procedure TForm1.ComboBox1Change(Sender: TObject);
begin
RichEdit1.SelectAll; // falls du die Schriftart des gesamten Textes ändern möchtest
RichEdit1.SelAttributes.Name := ComboBox1.SelText;
end;
Edit:
War wohl zu langsam...
Die Lösung von Chris ist aber wohl die einfachere (1.) bzw. sicherere (2.).
"Electricity is actually made up of extremely tiny particles called electrons, that you cannot see with the naked eye unless you have been drinking." (Dave Barry)
|