Hi all,
I want to create an up-down control, using this statement:
CONTROL ADD "msctls_updown32", hForm1&, %FORM1_UPDOWN1, "", 32, 17, 9, 12, _
%WS_CHILD OR %WS_VISIBLE OR %UDS_ALIGNRIGHT OR %UDS_SETBUDDYINT
This works, but I want to increase its size: both height and width.
I can change the height, but the width remains the same, even by changing to
something like this:
CONTROL ADD "msctls_updown32", hForm1&, %FORM1_UPDOWN1, "", 32, 17, 30, 30, _
%WS_CHILD OR %WS_VISIBLE OR %UDS_ALIGNRIGHT OR %UDS_SETBUDDYINT
So I suspect that I have to set the width by using SendMessage or something.
I couldn't find anything about it on the internet though...
Somebody know how?
Kind regards
Eddy
------------------
[email protected]
I want to create an up-down control, using this statement:
CONTROL ADD "msctls_updown32", hForm1&, %FORM1_UPDOWN1, "", 32, 17, 9, 12, _
%WS_CHILD OR %WS_VISIBLE OR %UDS_ALIGNRIGHT OR %UDS_SETBUDDYINT
This works, but I want to increase its size: both height and width.
I can change the height, but the width remains the same, even by changing to
something like this:
CONTROL ADD "msctls_updown32", hForm1&, %FORM1_UPDOWN1, "", 32, 17, 30, 30, _
%WS_CHILD OR %WS_VISIBLE OR %UDS_ALIGNRIGHT OR %UDS_SETBUDDYINT
So I suspect that I have to set the width by using SendMessage or something.
I couldn't find anything about it on the internet though...
Somebody know how?
Kind regards
Eddy
------------------
[email protected]
Comment