Hi, I created a drop down menu for autocad, and create a few buttons....but I want to be able to activate or load a UserForm that I also created in my Project, but I cannot get to load or even show, I have tried .show, .visible and nothing, here is my current code for my menu.
Set newMenuItem = newMenu.AddMenuItem(newMenu.Count + 1, _
"Form", ACADProject.UserForm1.Show)
I just want to be able to launch a UserForm that I create with this button from the menu I created. Thank you
Set newMenuItem = newMenu.AddMenuItem(newMenu.Count + 1, _
"Form", ACADProject.UserForm1.Show)
I just want to be able to launch a UserForm that I create with this button from the menu I created. Thank you