Hey,
I want to create a form which has no border and no top thing with the minimize, maximize, and close button. I can get this but when i creat a menu, even if its visiblility is false the top bar still appears.
Plz Help
Printable View
Hey,
I want to create a form which has no border and no top thing with the minimize, maximize, and close button. I can get this but when i creat a menu, even if its visiblility is false the top bar still appears.
Plz Help
Download FormBdr sample project from Karl E. Peterson's site.
He has a nicely wrapped class module which is basically plug-and-play.
Let me know if you'd have any problems implementing it.
You could get around this by using a seperate form just for storing the menus, then you could have your main form which has no border ot titlebar, use labels at the top to trigger the menus....heres the label click:
So when you click Label1 it will make the menu named 'mnuMain' which is on form1 show up on the label on form2.VB Code:
Private Sub Label1_Click() Form2.PopupMenu Form1.mnuMain End Sub
It doesnt look as good as the normal menu system but it is a solution to the problem:)
Quote:
Originally Posted by RhinoBull
I Used This before and it works well. Thanx again RhinoBull
Not at all ... :wave: