I have an C# app. I need to add an icon to that app so i added an icon resource. Adding resource went fine, but is there any way to use my (resource) icon as form icon WITHO
After adding the ICO file to your apps resources, you can use references it using My.Resources.YourIconNameWithoutExtension
For example if I had a file called Logo-square.ico added to my apps resources, I can set it to an icon with:
NotifyIcon1.Icon = My.Resources.Logo_square