Skip to content

how close the window " Room Statistics " auto after get own

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #187003
    light 2012
    Member

    Hi,
    In attachment example to get owner name bby String
    wonderful work
    Thanks String
    Last question of how close the window ” Room Statistics ” auto after get owner name ?
    🙂

    #187005
    String
    Member

    You can close a window by sending it the WM_CLOSE command.
    To send the message to the window, use SendMessage like what is used to send messages to other windows used in the Command5 button.

    Call SendMessageLong(Handle of Window to Close, WM_CLOSE, 0, 0)

    Notice, that the call requires the handle of the window to be closed. So, get the handle using FindWindow. FindWindow requires the windows Class Name and its Title in order to return the handel. We already know the class name from other code in the example and the windows title.

    'Close the room stats window
    ihnd = FindWindow("#32770", "Room Statistics")
    Call SendMessageLong(ihnd, WM_CLOSE, 0, 0)
    #187004
    light 2012
    Member

    well it working thank you

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.