Hi,
Does anyone know how to remove the Size Grip from a form. I can't find a Class name or Control ID for it so I can't trap when its being created and destroy that message.
Thanks
MAP
Printable View
Hi,
Does anyone know how to remove the Size Grip from a form. I can't find a Class name or Control ID for it so I can't trap when its being created and destroy that message.
Thanks
MAP
Set the Forms BorderStyle to anything other than Sizeable.
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]
The Form is the A Windows CommonDialog so I can't set it to sizable or not.
I did however just solve the problem.
The Size Grips class name is 'ScrollBar'
and its WindowStyle is '&H56020014'.
If you trap the dialog as its being created in the Timer event you can override its message handler. Write a message handler for the Scrollbar class and when the WM_PAINT message is sent destroy the Size Grip window.
thanks
MAP
But a CommonDialog isn't sizable anyway!?
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]
The new commondialog dll for win98/2000 have a new Explorer look and it is resizable.