Skip to content

Instantly share code, notes, and snippets.

@puppis42
Created August 26, 2021 19:55
Show Gist options
  • Save puppis42/73414d669f3f779b626f1529671deb86 to your computer and use it in GitHub Desktop.
Save puppis42/73414d669f3f779b626f1529671deb86 to your computer and use it in GitHub Desktop.
# 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