wxPython: TextCtrl problem -


i trying build first wx application have browse button in panel, user adds file. processing on file. want show information in textctrl user may modify it. need write in file. dont know how many textctrl box needed before processing file. using browse button event have got file, extracted information also. dont know how show information user.

any suggestion appreciated.

if you're doing showing 1 file, need 1 textctrl. give widget wx.te_multiline style , add sizer expand flag:

sizer.add(mytxtctrl, 0, wx.expand)

then user can see file , can save data save button or menu item. handler grab text control's contents using it's getvalue() method.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -