"Jaggo" <[EMAIL PROTECTED]> wrote > [Come to that, if someone could point me to a *simple* gui which > I can use in python, keep in mind I did learn a little VB, > I should be grateful as well.]
Tkinter is the standard Python GUI (IDLE is built using it). Many prefer wxPython, but it's an extra download. You can see very basic GUI code for both in the GUI topic of my tutorial. Bear in mind that Python doesn't come with a GUI Form builder ala VB, although there are a few around. This is one of them (based on wxPython): http://pythoncard.sourceforge.net/ -- Alan Gauld Author of the Learn to Program web site http://www.freenetpages.co.uk/hp/alan.gauld _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
