Re: Tkinter -- Show Data in an Excel like Read-Only Grid

2007-07-28 Thread Zentrader
If you want to only display data in a table format, try MultiListBox.py. Just download and run for a demo. http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52266 -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter -- Show Data in an Excel like Read-Only Grid

2007-07-28 Thread Benjamin
On Jul 27, 4:56 pm, beginner <[EMAIL PROTECTED]> wrote: > Hi All, > > I am really new to Tk and Tkinter. I googled the web but it was not > mentioned how to build a data grid with Tkinter. > > Basically, I want to show an excel like data grid with fixed column > and row headers and sortable columns

Re: Tkinter -- Show Data in an Excel like Read-Only Grid

2007-07-28 Thread beginner
On Jul 27, 11:08 pm, Zentrader <[EMAIL PROTECTED]> wrote: > On Jul 27, 2:56 pm, beginner <[EMAIL PROTECTED]> wrote: > > > Hi All, > > > I am really new to Tk and Tkinter. I googled the web but it was not > > mentioned how to build a data grid with Tkinter. > > > Basically, I want to show an excel l

Re: Tkinter -- Show Data in an Excel like Read-Only Grid

2007-07-27 Thread Zentrader
On Jul 27, 2:56 pm, beginner <[EMAIL PROTECTED]> wrote: > Hi All, > > I am really new to Tk and Tkinter. I googled the web but it was not > mentioned how to build a data grid with Tkinter. > > Basically, I want to show an excel like data grid with fixed column > and row headers and sortable columns

Tkinter -- Show Data in an Excel like Read-Only Grid

2007-07-27 Thread beginner
Hi All, I am really new to Tk and Tkinter. I googled the web but it was not mentioned how to build a data grid with Tkinter. Basically, I want to show an excel like data grid with fixed column and row headers and sortable columns. But the grids can be read-only. Can anyone give some hint on impl