"Alex Krycek" <agent.kry...@gmail.com> wrote

EasyGui is pretty simple, but I relying on standard tools. I liked how in
VB, for example, to open a dialog box you could write:

MsgBox("Text", vbOKOnly, "Title").


You mean like doing

import tkMessageBox
tkMessageBox.showinfo("Window Text", "A short message")

in Tkinter? :-)

OR

res = tkMessageBox.askokcancel("Which?", "Ready to stop?")
print res

At that level Tkinter is pretty easy too.

--
Alan Gauld
Author of the Learn to Program web site
http://www.freenetpages.co.uk/hp/alan.gauld

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to