import wximport 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 Trueapp = App(False, "output")fred = app.MainLoop()
Name (required)
email (will not be published) (required)
Website