Das hatte ich auch schon vermutet, aber es bringt die gleiche Fehlermeldung...
Delphi-Quellcode:
procedure TForm1.Button2Click(Sender: TObject);
var fIcon: TIcon;
Begin
ficon.Create;
ficon.LoadFromFile(extractfilepath(application.exename) + '63.ico');
icondata.hIcon := ficon.Handle;
Shell_NotifyIcon(NIM_MODIFY, @icondata);
end;
Allerdings kommt auch ein Warnung: Variable 'fIcon' might not have been initialized
Habe ich da irgendwas falsch gemacht ?