Pros: Simple, easy to Program Easy to understand for the beginner Cons May flicker as controls are drawn and redrawn Windows seems not to like this method much :) Insert this code snippet in your form that you want to be movable : #Region "Declarations" Dim m As Integer = 0 Dim n As Integer = 0 Dim isMouseDown As Boolean = False Dim isMouseDownAgain As Boolean = False #End Region #Region "Form Events" Private Sub Form1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDown If isMouseDownAgain = True Then isMouseDown = False isMouseDownAgain = False End If m = MousePosition.X - Me.Location.X n = MousePosition.Y - Me.Location.Y Me.Location = New Point(MousePosition.X ...
Confessions of n00bs