How do I get MsgBox to work in Python? Or will I have to make a plugin in VBScript and interface through that?
MsgBox in Python
Posted by Nexes on Sat 09 Jul 2005 05:11 AM — 2 posts, 21,701 views.
Well for a message box in python, you'd need the tkLibs I think, and the syntax would be similar to the following
Thats just off the top, if you need anything more serious try searching the Python docs, or Google.
import win32gui
win32gui.MessageBox(0, "This is the message", "This is the title", 1)
Thats just off the top, if you need anything more serious try searching the Python docs, or Google.