I want to resize (change only the width of) another programs window. I have
gotten the handle to that window and think I will use the SetWindowPos API
with the noMove, noZorder flags (unless someone recommends a better API for
this).
The question is which API to use to get the current size of the window so
that I only modify the width.
Thanks in advance
Scott Seligman - 03 Sep 2008 18:34 GMT
>The question is which API to use to get the current size of the window so
>that I only modify the width.
GetWindowRect

Signature
--------- Scott Seligman <scott at <firstname> and michelle dot net> ---------
Clothes make the man. Naked people have little or no influence on
society. -- Mark Twain
Me - 03 Sep 2008 19:03 GMT
>>The question is which API to use to get the current size of the window so
>>that I only modify the width.
>
> GetWindowRect
Thanks