SW_HIDE hides the window, the active status is given one window
SW_MINIMIZE minimizes window, active status gives one window
SW_RESTORE displays a window with the original size and location while enters the active status
SW_SHOW displays a window with the current size and location while enters the active status
SW_SHOWMAXIMIZED Maximize the window and activates it
SW_SHOWMINIMIZED minimizes the window and activates it
SW_SHOWMINNOACTIVE minimizes a window while do not change the moving window
SW_SHOWNA displays a window with the current size and location, does not change the moving window
SW_SHOWNOACTIVATE displays a window with the nearest sizes and locations, and does not change the moving window
SW_SHOWNORMAL is the same as SW_RESTORE
SW_HIDE HIDES The Window And Activates Another Window.
SW_MAXIMIZE MAXIMIZES The Specified WINDOW.
Sw_minimize minimizes the specified window and activates the next top-level window in the z order.
SW_RESTORE Activates and displays the window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when restoring a minimized window.
SW_SHOW ACTIVATES The Window and Displays It in Its Current Size and Position.
SW_SHOWDEFAULT Sets the show state based on the SW_ flag specified in the STARTUPINFO structure passed to the CreateProcess function by the program that started the application. An application should call ShowWindow with this flag to set the initial show state of its main window.
SW_SHOWMAXIMIZED ACTIVATES The Window and Displays It as a maximized window.
SW_SHOWMIMIZED ACTIVATES The Window and Displays It as a minimized window.
SW_SHOWMINNOACTIVE DISPLAYS The Window Asia Minimized WINDOW. The Active Window Remains Active.
SW_SHOWNA DISPLAYS The Window In Its Current State. The Active Window Remains Active.
SW_SHOWNOACTIVATE DISPLAYS A Window In Its Most Recent Size and Position. The Active Window Remains Active.