I am trying to change existing icons on a toolbar. ... When I replace an old icon with a new one and build\start my project, I don't see the new icon.
Hi HLD77,
I had this problem for a long time before I discovered what was going on. The Toolbar icons are all loaded in an ImageList control. The ImageList control is associated with the Toolbar to provide the various icons for your buttons.
The ImageList loads the icons by making a copy, (as a resource I believe, in your project) the first time you add the icon to the ImageList. The image on disk then no longer matters to the ImageList. To update the Toolbar, you must update the ImageList by deleting the old image and uploading the new one. When you set focus back to the Toolbar you should see the new icon on the toolbar. When re-loading the icon, you may need to move it to the right index position. There may also be some issues if your filename is exactly the same. If this happens, delete the icon, click on the design surface to update the toolbar, then re-upload the new icon. Should work.
It may seem annoying to have to update your icons all the time, but once you understand it, it's no big deal and it's nice not to have to bother with manually managing the icon resource yourself.
Cheers,
Steve