News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Check if Mdi-Client maximized

Started by ragdog, July 01, 2008, 07:13:37 PM

Previous topic - Next topic

ragdog

hello

i have a problem i search for a function or example check if MdiClient maximized or minimized
have your an idea?

would you with this solution?


invoke GetWindowText,eax,addr szBuffer,256
invoke StrStr,addr szBuffer,CTEXT ("- [")

.if eax !=FALSE
    invoke MessageBox,0,CTEXT ("Mdi is Maximized"),0,MB_OK
         .else
    invoke MessageBox,0,CTEXT ("Mdi is not Maximized"),0,MB_OK
.endif



greets,
ragdog

xmetal