From: Aaron H. <ap...@in...> - 2007-01-11 17:04:14
|
On Thursday 11 January 2007 11:29, Andy Ross wrote: > Hello all, > > is there a way to make the text entry dialog have multiple entries? From > what i can tell wx.TE_MULTILINE makes a larger entry box but not a way for > multiple entry. > It works for me. I have a line of code like this: result =3D dialog.textEntryDialog(self, "Enter or update the notes:", "Note= s=20 Editor", "", wx.TE_MULTILINE) It allows for multiple lines of notes entered. That doesn't mean you can=20 enter multiple lines and get it to return an array of entries like=20 ["Line1","Line2","Line3"]. Of course, you could .split("\n") the results=20 yourself. =2DAaron |