Created
August 26, 2021 19:55
-
-
Save puppis42/73414d669f3f779b626f1529671deb86 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Styles: | |
# 0 : OK | |
# 1 : OK | Cancel | |
# 2 : Abort | Retry | Ignore | |
# 3 : Yes | No | Cancel | |
# 4 : Yes | No | |
# 5 : Retry | Cancel | |
# 6 : Cancel | Try Again | Continue | |
import ctypes | |
def MessageBox(title, text, style): | |
return ctypes.windll.user32.MessageBoxW(0, text, title, style) | |
MessageBox('Your title', 'Your text', 2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment