Das steht in dem Artikel auch
Hab grade kein Delphi da, aber hab mal schnell was in c# zusammen gezimmert, funktioniert auch.
Code:
DlgOpen.ShowDialog();
string AIconFile = DlgOpen.FileName;
System.Drawing.Icon AIcon = new System.Drawing.Icon(AIconPath);
notifyIcon1.Icon = AIcon;
notifyIcon1.Visible = true;
notifyIcon1.Text = "Test Icon";
Man liest sich, Stanlay