Hi All,I have made several tools via Base Commands using VB.NET for ArcMap. After building the solution, I open up ArcMap and the tools are available for me to add through TOOLS>CUSTOMIZE>COMMANDS (tab). I want to put the tools that I created into a Toolbar using VB.NET and the BaseToolBar template. The example in the template shows this: AddItem("esriArcMapUI.ZoomOutTool")
BeginGroup() 'Separator
AddItem("{FBF8C3FB-0480-11D2-8D21-080009EE4E51}", 1) 'undo command
AddItem(New Guid("FBF8C3FB-0480-11D2-8D21-080009EE4E51"), 2) 'redo command
How would I insert my own tools into the toolbar? Do I use the GUIDS or can I use the UniqueID I set in the source code of each individual tool? Any help or pointers would be much appreciated. Thanks