Hi All,I was wondering if anyone knew how to add the toolbox tool "Make XY Event Layer" to my custom toolbar using VB.NET.Right now, I have a bunch of tools that in there which are being assigned to the toolbar by their GUID.  The code below shows how to add current Tools using their GUIDs.  Where would I find more information about the Current ArcMap tool GUIDs?
   Public Sub New()
        '
        'TODO: Define your toolbar here by adding items
        '
        AddItem(New Guid("5ec71862-3712-4b4e-8f31-2e58516eb72f"), 1) 'Wells Update
        AddItem(New Guid("48800627-5d77-4dcf-a648-28d69c826ac2"), 2) 'WellsandInsepectionUpdate
        AddItem(New Guid("65cbc386-c5bf-4677-8073-c986b843a051"), 3) 'Geology Update
        '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
   End Sub
 
Thanks in advance!