creating toolbar

I have created a dll using vb and I have coded for adding toolbar

If I use axcookie & AddToolbar3 then I can not see the toolbar

but If I use AddToolbar2 then I can see the toolbar but I am not able to see the images in toolbar button & I can not invoke the function after clicking on this button

Please guide me for the same.

Attached code below

    lngToolbarDocTypes = swDocTemplateTypeDRAWING

    axToolbarID1 = axSldWorks.AddToolbar3(AXCookie, "test1", 101, 102, -1, swDocTemplateTypeDRAWING)
    axToolbarID1 = axSldWorks.AddToolbar2("MENU1", "TEST1", 101, 102, -1, swDocTemplateTypeDRAWING)

   bRet = axSldWorks.AddToolbarCommand2(AXCookie, axToolbarID1, 1, "T1", "ggg", "TOOLTIP", "CLICK")
   bRet = axSldWorks.AddToolbarCommand2(AXCookie, axToolbarID1, 0, "T2", "ggg", "TOOLTIP", "CLICK")

   bRet = axSldWorks.AddToolbarCommand("MENU1", axToolbarID1, 1, "S1")
   bRet = axSldWorks.AddToolbarCommand("MENU1", axToolbarID1, 1, "S2")

SolidworksApi macros