The MASM Forum

General => The Campus => Topic started by: xandaz on November 22, 2020, 01:01:20 AM

Title: on what circunstances does WM_MDIICONARRANGE doesnt work?
Post by: xandaz on November 22, 2020, 01:01:20 AM
   Hi there. I have this mdi app. when i click WM_MDIICONARRANGE nothing happens. Can someone tell me why?
        .elseif ax==IDB_ICON
icon_arrange:       
            invoke  SendMessage,hMdi,WM_MDIICONARRANGE,0,0
Title: Re: on what circunstances does WM_MDIICONARRANGE doesnt work?
Post by: hutch-- on November 22, 2020, 02:43:43 AM
This is from MSDN.

An application sends the WM_MDIICONARRANGE message to a multiple-document interface (MDI) client window to arrange all minimized MDI child windows. It does not affect child windows that are not minimized.
Title: Re: on what circunstances does WM_MDIICONARRANGE doesnt work?
Post by: xandaz on November 22, 2020, 08:58:23 PM
   Ok... i thought it arranged maximized windows into icons. Thanks hutch  :thumbsup: :thumbsup: