9

I have obtained the handle of a window I want to target, with win32gui library in Python

How do I close the window?

I have the following code, the second line did what I intended to do

but the last line seems to be wrong.

handle = win32gui.FindWindow(None, r'Notepad++')
win32gui.SetForegroundWindow(handle)
win32gui.CloseWindow(handle)

I also want to know if I just want to close the window, is the second line necessary?

Besides that, I notice a minor thing, and I am curious about it:

If I try

win32gui.CloseWindow(handle)

in Python shell, I get something like:

2500276L

but if I try

handle = win32gui.CloseWindow(handle)
print handle

then I get

2500276

does the 'L' in the end make any difference?

Thanks for your attention!!

1 Answer 1

16

Try:

import win32con    
win32gui.PostMessage(handle,win32con.WM_CLOSE,0,0)

This should work.

Sign up to request clarification or add additional context in comments.

1 Comment

does not work for me. wxpython window

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.