如何复原指定的窗体, 并使该窗体被前置?
就是说把任意一个已经最小化的窗口弹出来, 或将被其它窗体覆盖的窗体显示出来?应该调用哪个API?
(小弟对 Windows API 不大了解唉)

解决方案 »

  1.   

    The BringWindowToTop function brings the specified window to the top of the Z order. If the window is a top-level window, it is activated. If the window is a child window, the top-level parent window associated with the child window is activated. BOOL BringWindowToTop(    HWND hWnd  // handle to window
       );
     ParametershWndIdentifies the window to bring to the top of the Z order.  Return ValuesIf the function succeeds, the return value is nonzero.
    If the function fails, the return value is zero. To get extended error information, call GetLastError.