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.

[1220 byte] By [BaronvonTollbooth] at [2008-2-4]
# 1
Answering my own question; the problem was caused by trying to use icons in the imagelist. Using bitmap images work.
BaronvonTollbooth at 2007-9-8 > top of Msdn Tech,Smart Device Development,.NET Compact Framework...