Prev: catch PnP Event in C#
Next: Registry
From: Helmut Giese on 22 Oct 2009 06:49 Hello out there, in an article about a toolbox http://www.codeproject.com/KB/miscctrl/toolbox.aspx I found the sentence I copied the icons and tabs from the real ToolBox ... and in the project's resource file there is an ImageList which presumably contains them. How can this be done? Thanks and best regards Helmut Giese
From: Jeff Johnson on 22 Oct 2009 09:18 "Helmut Giese" <hgiese(a)ratiosoft.com> wrote in message news:eid0e59f7q9i4dhnqktbs7fh57h9i6u7k5(a)4ax.com... > Hello out there, > in an article about a toolbox > http://www.codeproject.com/KB/miscctrl/toolbox.aspx > I found the sentence > I copied the icons and tabs from the real ToolBox ... > and in the project's resource file there is an ImageList which > presumably contains them. > How can this be done? In VS 2005, there is a folder called "x:\Program Files\Microsoft Visual Studio 8\Common7\VS2005ImageLibrary" which contains a Zip file with a ton of graphics, some icons, some bitmaps. For 2008, it's "x:\Program Files\Microsoft Visual Studio 9.0\Common7\VS2008ImageLibrary\<your locale>".
From: Scott M. on 22 Oct 2009 09:26 "Jeff Johnson" <i.get(a)enough.spam> wrote in message news:OMGXloxUKHA.5584(a)TK2MSFTNGP05.phx.gbl... > "Helmut Giese" <hgiese(a)ratiosoft.com> wrote in message > news:eid0e59f7q9i4dhnqktbs7fh57h9i6u7k5(a)4ax.com... > >> Hello out there, >> in an article about a toolbox >> http://www.codeproject.com/KB/miscctrl/toolbox.aspx >> I found the sentence >> I copied the icons and tabs from the real ToolBox ... >> and in the project's resource file there is an ImageList which >> presumably contains them. >> How can this be done? > > In VS 2005, there is a folder called "x:\Program Files\Microsoft Visual > Studio 8\Common7\VS2005ImageLibrary" which contains a Zip file with a ton > of graphics, some icons, some bitmaps. For 2008, it's "x:\Program > Files\Microsoft Visual Studio 9.0\Common7\VS2008ImageLibrary\<your > locale>". These folders do not contain Visual Studio-specific icons, rather they contain Windows-specific icons. -Scott
From: Helmut Giese on 22 Oct 2009 10:08 Hi Jeff, >> Hello out there, >> in an article about a toolbox >> http://www.codeproject.com/KB/miscctrl/toolbox.aspx >> I found the sentence >> I copied the icons and tabs from the real ToolBox ... >> and in the project's resource file there is an ImageList which >> presumably contains them. >> How can this be done? > >In VS 2005, there is a folder called "x:\Program Files\Microsoft Visual >Studio 8\Common7\VS2005ImageLibrary" which contains a Zip file with a ton of >graphics, some icons, some bitmaps. For 2008, it's "x:\Program >Files\Microsoft Visual Studio 9.0\Common7\VS2008ImageLibrary\<your locale>". thanks, found them. Best regards Helmut Giese
From: Helmut Giese on 22 Oct 2009 10:15
Hi Scott, >> In VS 2005, there is a folder called "x:\Program Files\Microsoft Visual >> Studio 8\Common7\VS2005ImageLibrary" which contains a Zip file with a ton >> of graphics, some icons, some bitmaps. For 2008, it's "x:\Program >> Files\Microsoft Visual Studio 9.0\Common7\VS2008ImageLibrary\<your >> locale>". > >These folders do not contain Visual Studio-specific icons, rather they >contain Windows-specific icons. you're both right: :) - In ...\icons one finds in fact all kinds of "general" Windows icons, however in - ...\bitmaps\outline\24bitcolor I find bitmaps like control_button.bmp, which looks exactly like the bitmap on the ToolBox - apart from a ghastly pinkish background that is. Best regards Helmut Giese |