Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Looking for implementation of a table for Python.

Status
Not open for further replies.

ImpactCorey

Programmer
May 14, 2002
4
0
0
IL
Does anybody know of a [good] implementation of a editable table for a python gui? Or is there a way TkTable could be utilized? Or will I be forced to write my own?
 
You could simply use a text area, each line being a table element.

Conversion between the two is easy:

list = table.text.split('\n')

table.text = ' '.join(list)



Otherwise, there may be something in PMW (Python MegaWidgets) or wxPython.
 
You could simply use a text area, each line being a table element.

Conversion between the two is easy:

list = table.text.split('\n')

table.text = ' '.join(list)



Otherwise, there may be something in PMW (Python MegaWidgets) or wxPython.
 
You could simply use a text area, each line being a table element.

Conversion between the two is easy:

list = table.text.split('\n')

table.text = ' '.join(list)



Otherwise, there may be something in PMW (Python MegaWidgets) or wxPython.
 
I already used MCScrolledListBox from the PMW module and I'm very content with it!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top