Re: [Tutor] AppendText as new lines

2005-08-10 Thread Kent Johnson
_ Dan _ wrote: > for record in result: > > self.text_ctrl_listar.AppendText(record[0]) > > The results are shown in the text window as: > Name1Name2 > > And what I really want to do is something like this: > Name1 > Name2 Looks like you need some newlines: self.text_ctrl_li

[Tutor] AppendText as new lines

2005-08-10 Thread _ Dan _
Hi, to all. Well, I have some list results that I must write to a Window. This is what I have tu show: (('Name1',), ('Name2',)) This is my "show function" def Listar_Mostrar(self,event): connect = MySQLdb.connect(host,user,passwd,db) cursor = connect.cursor() c