This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: How to use ctypes.windll.user32.MessageBoxW
Type: resource usage Stage: resolved
Components: ctypes Versions: Python 3.3
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: David.Wolf, ned.deily
Priority: normal Keywords:

Created on 2012-12-15 05:05 by David.Wolf, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg177529 - (view) Author: David Wolf (David.Wolf) Date: 2012-12-15 05:05
import ctypes
ctypes.windll.user32.MessageBoxW(0,"Time's up!","Message",0)


My quention is that I want to set my message box topmost.
It's said I just need to change the first parameter, but I don't know how I should change it.

Help me please! I've been working on this for an hour.
msg177530 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2012-12-15 05:57
Sorry, this bug tracker is for reporting problems with Python itself.  Try asking on support forums, like the general comp.lang.python newsgroup/mailing list (http://www.python.org/community/lists/) or the more specialized python-win32 list (http://mail.python.org/mailman/listinfo/python-win32) or possibly http://stackoverflow.com.
History
Date User Action Args
2022-04-11 14:57:39adminsetgithub: 60895
2012-12-15 05:57:20ned.deilysetstatus: open -> closed

nosy: + ned.deily
messages: + msg177530

resolution: not a bug
stage: resolved
2012-12-15 05:05:05David.Wolfcreate