Imagelist in CF beta 2
Visual Studio 2005 Beta seems to produce invalid image list code.
For the Pocket PC 2003 I have added 2 icons to an image list and then attached that list to a toolbar.
However on loading the application throws an exception when trying to load the first image into the list
this.imageList1.ImageSize =new System.Drawing.Size(16, 16);
this.imageList1.Images.Clear();
this.imageList1.Images.Add(((System.Drawing.Image)(resources.GetObject("imageList1.Images"))));
this.imageList1.Images.Add(((System.Drawing.Image)(resources.GetObject("imageList1.Images1"))));
Using ILDASM there is no sign of the images being included in the manifest for the exe.

