Method: WinWindow#show_no_activate!

Defined in:
lib/winwindow.rb

#show_no_activate!Object

Displays the window in its most recent size and position. This is similar to show_normal!, except the window is not actived.

msdn.microsoft.com/en-us/library/ms633548(VS.85).aspx



743
744
745
746
# File 'lib/winwindow.rb', line 743

def show_no_activate!
  ret=WinUser.ShowWindow(hwnd, SW_SHOWNOACTIVATE)
  ret != WIN_FALSE
end