Hi,
für ein Programm will ich ein ToolBar verwenden. Mein Problem ist: Wie versehe ich mein Buttons mit Icons.
So weit bin ich schon:
Delphi-Quellcode:
var
ico: TIcon;
begin
ico := TIcon.Create;
ico.LoadFromFile('einloggen0.ico');
ToolBar.Images.AddIcon(ico);
Das Problem ist nun das die fertige exe das Icon als Datei brucht.
Gibt es ein besser Lösung ?
jeroen