I already load the VBA Apps from the startup suite. I am using the following sub to make the toolbar and button.
Sub addtoolbar()
Dim mytoolbar As AcadToolbars
Dim MyButton As AcadToolbar
Dim objmenugroup As AcadMenuGroup
Dim newbutton As AcadToolbarItem
Set objmenugroup = ThisDrawing.Application.MenuGroups.Item(0)
Set mytoolbar = objmenugroup.Toolbars
Set MyButton = mytoolbar.Add("done1")
Set newbutton = MyButton.AddToolbarButton(0, "DONE", "O", "-vbarun main ")
MyButton.Visible = True
MyButton.Dock acToolbarDockTopRight
newbutton.SetBitmaps "C:/DONE/DONE.bmp", "C:/DONE/DONE.bmp"
End Sub
But, The next time I launch autocad, the button is gone. I would really like to just run this macro at startup. Any ideas how I can do that?