Quote Originally Posted by LaVolpe View Post
That resize/grab handle on the status bar was always there, correct? I don't know if you can remove it without taking control over drawing the statusbar yourself and/or preventing mouse events over that corner. However, you can disable the statusbar which prevents users from dragging that corner.
Code:
Private Declare Function EnableWindow Lib "user32.dll" (ByVal hwnd As Long, ByVal fEnable As Long) As Long

' Example:
EnableWindow MDIForm1.StatusBar1.hwnd, 0& ' 0&=False, 1&=True

Try "bigmox68 "( Mar 31st, 2009, 02:57 PM #4) his post. it's an great idea.