Does anyone know why if I change the App.ico ( or any .ico ) I can never get it to display?
I went and altered the App.ico file, but when I run, I get the original. If I open App.ico in the environment, I get the one I drew.
I even tried making App.ico an embedded resource and added this line to the constructor of my form ( After InitializeComponent )
this.Icon = new Icon( this.GetType(), "App.ico" );
I also tried setting the Icon property of the form in the designer. This time the application displayed properly in the property grid, but when I ran the application, it was the old icon again.