At the MouseDown event, check if the mouse position is in a corner of the control. If yes save mouse coordinates and change the cursor to vbSize (or something like that).
Do the resizing in the MouseMove event, changing the size based on the current mouse coordinates minus the saved ones. Terminate the sizing in the MouseUp.
This should be enough to get you started.
Marco
|