showwarning Dialog box : Dialog « GUI Tk « Python
- Python
- GUI Tk
- Dialog
showwarning Dialog box

from Tkinter import *
import tkMessageBox
def a():
tkMessageBox.showwarning("Open file", "Cannot open this file\n")
a()
Related examples in the same category