Re: [Tutor] Get user input in wxpython

2005-08-06 Thread danf_1979
Just if someone is trying something similar... I did it! Thanks Ismael for your info! ... self.label_1 = wx.StaticText(self.panel_1, -1, "TO:") self.label_2 = wx.StaticText(self.panel_1, -1, "FROM:") self.label_3 = wx.StaticText(self.panel_1, -1, "SUBJECT") self.label_4 = wx.StaticText(self.panel_

Re: [Tutor] Get user input in wxpython

2005-08-06 Thread Kent Johnson
_ Dan _ wrote: > Hi: > I'm new to python and wxpython, and I'm trying to make > a program to send mail. I'm using what follows: > class MyFrame1(wx.Frame): > def __init__(self, *args, **kwds): > ... > self.message = wx.TextCtrl(self.panel_1, -1, "") > self.button_1 = wx.Button(self.

[Tutor] Get user input in wxpython

2005-08-06 Thread _ Dan _
Hi: I'm new to python and wxpython, and I'm trying to make a program to send mail. I'm using what follows: class MyFrame1(wx.Frame): def __init__(self, *args, **kwds): ... self.message = wx.TextCtrl(self.panel_1, -1, "") self.button_1 = wx.Button(self.panel_1, -1, "SEND Mail") .