Click here to Skip to main content
15,895,256 members
Articles / Desktop Programming / Windows Forms

Dragging a Borderless Form

Rate me:
Please Sign up or sign in to vote.
4.60/5 (5 votes)
12 Jun 2010CPOL 6.9K  
The original snippet I made is in VB.NETProtected Overrides Sub WndProc(ByRef e As Message) MyBase.WndProc(e) If e.Msg = &H84 AndAlso e.Result = &H1 Then e.Result = &H2 End SubI used Reflector to translate it to C#protected override void WndProc(ref Message...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Student
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions