Hi all,
I have an SDK dialog created using the following style bits -
I then add a status bar in the time-honoured fashion -
The resulting status bar then has a size grip, even though as you can see the %SBARS_SIZEGRIP style
wasn't specified. As you might have guessed... I don't actually want a sizing grip to appear.
If I remove the %WS_THICKFRAME from the dialog, the grip disappears, but then the dialog doesn't
resize. The answer is probably simple, and obvious, but I'm going round in circles here looking
for it.
Can anyone set me right here ?
Thanks in advance -
Paul
I have an SDK dialog created using the following style bits -
Code:
%WS_CLIPCHILDREN OR %WS_CAPTION OR %WS_SYSMENU OR %WS_THICKFRAME OR %WS_MINIMIZEBOX
Code:
hStatus = CreateStatusWindow( %WS_CHILD or %WS_VISIBLE, byval %NULL, hWnd, %ID_STATUSBAR )
wasn't specified. As you might have guessed... I don't actually want a sizing grip to appear.
If I remove the %WS_THICKFRAME from the dialog, the grip disappears, but then the dialog doesn't
resize. The answer is probably simple, and obvious, but I'm going round in circles here looking
for it.
Can anyone set me right here ?
Thanks in advance -
Paul
Comment