Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Changing the form look?
#12
One problem your going to run into when using a borderless form is, the ability to drag the form around the screen. Using the snippet code below this will fix it.

Paste this anywhere in your Form code. Enjoy

Code:
Const WM_NCHITTEST As Integer = &H84
Const HTCLIENT As Integer = &H1
Const HTCAPTION As Integer = &H2
Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
Select Case m.Msg
Case WM_NCHITTEST
MyBase.WndProc(m)
If m.Result = HTCLIENT Then m.Result = HTCAPTION
Case Else
'Make sure you pass unhandled messages back to the default message handler.
MyBase.WndProc(m)
End Select
End Sub
Reply


Messages In This Thread
Changing the form look? - by ProspectDotNet - 10-19-2009, 09:01 PM
RE: Changing the form look? - by Extasey - 10-19-2009, 11:05 PM
RE: Changing the form look? - by ProspectDotNet - 10-20-2009, 12:21 PM
RE: Changing the form look? - by Vorfin - 10-20-2009, 01:03 PM
RE: Changing the form look? - by ProspectDotNet - 10-20-2009, 01:05 PM
RE: Changing the form look? - by BlueMelon - 10-20-2009, 01:51 PM
RE: Changing the form look? - by Vorfin - 10-20-2009, 01:53 PM
RE: Changing the form look? - by Red X - 10-20-2009, 03:02 PM
RE: Changing the form look? - by Vorfin - 10-20-2009, 03:26 PM
RE: Changing the form look? - by Skill - 10-20-2009, 03:03 PM
RE: Changing the form look? - by Extasey - 10-20-2009, 06:01 PM
RE: Changing the form look? - by malcomhfc - 10-27-2009, 03:10 AM
RE: Changing the form look? - by ProspectDotNet - 10-27-2009, 07:21 AM
RE: Changing the form look? - by Conspiracy - 10-27-2009, 08:02 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem in form Chuggaism 3 1,825 11-07-2013, 06:35 PM
Last Post: AceInfinity
  [VB.NET] Animated Form Extend [SRC] Fragma 6 5,297 10-10-2013, 12:18 PM
Last Post: Saket
  Greation a promission for users in main form or setting deveco 2 895 11-13-2012, 01:33 PM
Last Post: TAHMINA123
  [Tutorial] Fade In / Out Form [Source] ₠o™ 4 1,207 12-09-2011, 01:21 AM
Last Post: ₠o™
  [Help]Connecting Form Windows milopeach 3 1,114 05-04-2011, 07:10 AM
Last Post: KoBE

Forum Jump:


Users browsing this thread: 1 Guest(s)