E
Ed Sutton
// This works fine when using MyNameSpace but not
// from MyNameSpace.MySubNameSpace
myImageList = new ImageList();
myImageList .Images.Add((Image)new
Bitmap(GetType(),Resources.Images.FolderClosed.ico"));
How can I get these resources from a class that is using a namespace of
MyNameSpace.MySubNameSpace?
Thanks in advance for any tips or direction,
-Ed
// from MyNameSpace.MySubNameSpace
myImageList = new ImageList();
myImageList .Images.Add((Image)new
Bitmap(GetType(),Resources.Images.FolderClosed.ico"));
How can I get these resources from a class that is using a namespace of
MyNameSpace.MySubNameSpace?
Thanks in advance for any tips or direction,
-Ed