Mega Code Archive

 
Categories / Python Tutorial / Wxpython
 

Use TextEntryDialog

import wx import images     class App(wx.App):     def __init__(self, redirect=True, filename=None):         wx.App.__init__(self, redirect, filename)          def OnInit(self):         dlg = wx.TextEntryDialog(None, "Who is buried in Grant's tomb?",'A Question', 'Cary Grant')         if dlg.ShowModal() == wx.ID_OK:             response = dlg.GetValue()         dlg.Destroy()         return True app = App(False, "output") fred = app.MainLoop()