Shoutbox

Removing title bar and side edges - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Removing title bar and side edges (/showthread.php?tid=30278)

Removing title bar and side edges by DJeX on 08-22-2004 at 01:53 AM

I'm trying to remove the title bar and side edges form a VB program i'm making. Since I got a hiden menu in my form the Border Style - None don't work. So how do I remove the border and title bard from my program?


RE: Removing title bar and side edges by matty on 08-22-2004 at 02:20 AM

When a form has a menu you cannot set the borderstyle to 0.

You can put the menu on another Form and call it when needed.

code:
Private Sub Form_Click()
          PopupMenu Form2.Menu1
End Sub

RE: Removing title bar and side edges by DJeX on 08-22-2004 at 02:42 AM

O yea! now why dident I think of that. Thanks!