Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
there is a check button on windows
use python win32gui.i can find the handle and check it using PostMessage.
here is code
bt=win32gui.FindWindowEx(hwnd,None,'Button','设置用户信息(&L)')
win32gui.PostMessage(bt,win32con.WM_KEYDOWN, win32con.VK_SPACE, 0)
win32gui.PostMessage(bt,win32con.WM_KEYUP, win32con.VK_SPACE, 0)
but if I accidentally run the program twice, the check button's state will be recovered
Is there any way to Judge before check,if it is checked ,the program will do nothing.
a check button on windows
i try to find the api of the win32gui ,but Nothing found
–
–
–
–
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.