Hi
Is there a way you can specify the images for a TreeView control from embedded resources?
Obviously for an image, this is a simple case of
<nameofcontrol>.Image = <wherever>.Resources.<image name>
in the UI.cs file constructor
Now for a treeview, despite the image being a simple bmp file, you need to set
<nameofcontrol>.ImageList (I'd guess) = ????
(just entering the bmp gives a type mismatch)
(At the moment we are defining the ImageListLocation to be %WorkingDir%Images\<nameofimage>.bmp
which works, but are looking to embed all our remaining images to within a dll)
Thanks
Andy