Re: Tkinter widgets for desktop database application

2021-07-14 Thread Rich Shepard
On Wed, 14 Jul 2021, Betty Hollinshead wrote: So.I've had success with GTK3 (not Tkinter). Betty, There are multiple widget sets and all will work better with some application types than others. In the past I used wxPython but switched to Tkinter. Tried PyQt5 (doesn't do complex, multi-t

Re: Tkinter widgets for desktop database application

2021-07-14 Thread Terry Reedy
On 7/13/2021 4:24 PM, Rich Shepard wrote: I'm writing a couple of database applications that use tkinter, and not a web browser, for the UI and I'm still trying to determine the optimal way to do this. Individual tk and ttk widgets (LineEntry, Combobox, etc.) work for adding Do you mean Entr

Re: Tkinter widgets for desktop database application

2021-07-14 Thread Betty Hollinshead
On Tuesday, 13 July 2021 at 21:35:01 UTC+1, Rich Shepard wrote: > I'm writing a couple of database applications that use tkinter, and not a > web browser, for the UI and I'm still trying to determine the optimal way to > do this. > > Individual tk and ttk widgets (LineEntry, Combobox, etc.) wor

Re: Tkinter widgets for desktop database application

2021-07-14 Thread Alan Gauld via Python-list
On 13/07/2021 21:24, Rich Shepard wrote: > What have other developers used for the UI on a stand-alone database > application not using a web browser? Mostly I just use a scrolledlistbox and a set of functions for formatting the data into columns for display. The big snag is you can't do spreads

Tkinter widgets for desktop database application

2021-07-13 Thread Rich Shepard
I'm writing a couple of database applications that use tkinter, and not a web browser, for the UI and I'm still trying to determine the optimal way to do this. Individual tk and ttk widgets (LineEntry, Combobox, etc.) work for adding and modifying individual database table rows but not for displa