Just starting WX Python extensions ...

NEWBIE ALERT!

Esteemed List Participants and Lurkers:

Look at EasyGui:
http://www.ferg.org/easygui/

Here's what your program would look like:

# Program: Beginners_Popups.py ... "Hello World" for popups
from easygui import *

print "Begin program"

# Prepare the basic programmatic messages
strMess1 = "Is this a Test?"
strTitle1 = "Test Query"
strResponse = "You selected "
strTitle2 = "Response:"

boolVar = boolbox(strMess1, strTitle1, ["Yes", "No"])

# Build the appropriate response
if boolVar:
  strResponse += "YES"
else:
  strResponse += "NO"

msgbox(strResponse, strTitle2) # button is OK
boolbox(strResponse, strTitle2, ["Close"]) # button is Close
print "End of Program"
--

Stephan ...

Thank you immensely for recommending "EasyGUI". That is EXACTLY what I was
looking for. I did, of course, notice that you are the author! Where do I
send the check?

Anyone else looking for some VERY simple popups ought to try EasyGUI ... it
is a fantastic tool for getting ramped up in Python! It is a really nice
compact collection of Message boxes and modal dialog popups to start off with.

With that, I'll sign off the wx list and wish you all ...

        Blessings in abundance, all the best, and ENJOY!

        Art Du Rea, Carlisle, PA USA

ยทยทยท

At 05:42 AM 8/4/03 -0700, Stephan Ferg wrote: