I have a borderless form. I create a menu in the editor and it automatically makes the form have a border. How do I stop that from happening? (I'm using the menu for a right-click popup)
Thanks.
Printable View
I have a borderless form. I create a menu in the editor and it automatically makes the form have a border. How do I stop that from happening? (I'm using the menu for a right-click popup)
Thanks.
Set the Menu's visible property to False.
Or create a second form with the menu on it and to call it:
Code:PopupMenu Form2.MyPopUpMenu
You're better off making the menu invisible, because having a second Form strictly for that purpose would be a waste of memory.