Atozed Forums

Full Version: Icon Intraweb application
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

how to change the default icon intraweb in application mode?
It's the icon in the task bar.
Hello,


Add a resource file (.rc file) to your project if you don't already have one and add something like this to it: 

IW_FAVICON   RCDATA  "D:\IW_Include\favicon.ico"

where favicon.ico is your custom icon.

[Image: cust-iw-icon.png]

Regards,
Mark
Favicon will set it on the web. If you want to set it for the SA app itself, look at the CustomSA demo and set the icon in project properties like a normal Delphi application.
(12-05-2020, 05:56 PM)kudzu Wrote: [ -> ]Favicon will set it on the web. If you want to set it for the SA app itself, look at the CustomSA demo and set the icon in project properties like a normal Delphi application.

Did a quick test, the method I described does both cases at once.  If you needed the icons to be different then the above answer looks to be the solution.