Reputation: 35
i am using Delphi enterprise version 7 and want to drop a TTrayIcon Control to a form. My problem is that i cannot find where the control is in Control collection. I have also read that TTrayIcon belongs to the unit ExtCtrls. I added the unit to my application but when i get that TTrayIcon is undeclared. Could you please help me?
Upvotes: 1
Views: 868
Reputation: 612954
The TTrayIcon component was added after Delphi 7. Your version does not include it. You'll need to find another component, or call Shell_NotifyIcon directly.
Upvotes: 2