Комментарии:
I'm extremely grateful... The documentation and texts I've been reading have been giving me a hard time figuring how all of these tie together.
Once again! Thanks 🙏
Very nice! Thanks for this.
ОтветитьVery good and informative video!!
ОтветитьIs there a way to make it where the values generate while the gui is already in view like you can watch the values populate onto the screen one by one?
ОтветитьA very informative series. Thank you very much for sharing your knowledge.
ОтветитьHi wich theme do you have
ОтветитьIt helped me a lot thank you
ОтветитьGreat and so efficient! Thank-you😊
Ответитьwhy is your channel called atlas
ОтветитьExcellent presentation.
Ответитьgood tuto
ОтветитьTkank you very much. Best explanation of Treeview ever!!!!!!
Ответитьvery useful thank you sir
Ответитьplease how can i add a button next to the name in a cell inside this table?
ОтветитьYe repaired wala hi bechta vo to aapne halla kaat diya is liye ab vo accha banne ka natak kar raha hai.
ОтветитьThanks. You are my go too for learning tkinter!
Ответитьwondering how to focusing 1 cell (specific column) using Tab key or Arrow key. Do you mind to make further tutorial on it ?
Ответитьimport tkinter as tk
from tkinter import ttk
from pandastable import Table
import pandas as pd
root = tk.Tk()
root.title("Read Excel Files")
root.grid_columnconfigure(0, weight = 1)
root .grid_rowconfigure(0, weight = 1)
frame = ttk.Frame(root,borderwidth=10)
frame.grid(sticky = "nswe")
df = pd.DataFrame()
table = Table(frame, dataframe=df, showstatusbar=True, showtoolbar=True)
table.show()
table.grid(sticky = "nswe")
root.mainloop()
All code for Excel,CSV in tkinter . Load,read.......pro