How to set an icon to a project?

  • Thread starter Thread starter Cassiano
  • Start date Start date
C

Cassiano

How to set an icon to a project? to apear with the file, instead of the
defaul blue window icon? Of course that is different between vb6 and .net
projects. I can't find where to set the icon in .net project!!!



Tks for attention...
 
The icon you assign to your Compact Framework Project Properties
must contain a 16x16 and a 32x32 icon in the same .ico file. Search the
google
archive of this newsgroup for many posts that explain how to manage this.

To create a shortcut on device so that your application name and icon
shows up in the Program Files dialog on device, edit the last line of
the INF file that is generated in the OBJ folder after running "Build Cab
File"
from the Build Menu in VS.Net 2003. Change %CE11% to %CE17%
in the INF file and save your changes.

Then re-run BuildCab.bat to generate a new CAB file that will place the
shortcut on device for you when you deploy the CAB file.

-Darren
 
Back
Top