C
Cole
I'm building a toolbar with a colleague and am looking to use a graphical
indicator from a list of icons within MS Project 2007. We need to build a
ImageList object. In order to do that, we were looking to retrieve a
graphical indicator as an Image not as an enum
(Microsoft.Office.Interop.MSProject.PjIndicator).
Here's some simple code to explain what I mean .
ImageList imgList = new ImageList();
imgList.Images.Add(Indicator1);
imgList.Images.Add(Indicator2);
imgList.Images.Add(Indicator3);
Could anyone point me in the right direction on how to achieve this?
indicator from a list of icons within MS Project 2007. We need to build a
ImageList object. In order to do that, we were looking to retrieve a
graphical indicator as an Image not as an enum
(Microsoft.Office.Interop.MSProject.PjIndicator).
Here's some simple code to explain what I mean .
ImageList imgList = new ImageList();
imgList.Images.Add(Indicator1);
imgList.Images.Add(Indicator2);
imgList.Images.Add(Indicator3);
Could anyone point me in the right direction on how to achieve this?