it's not often I get exactly what i look for, but this one is an exception. absolutly fantastic video. thank you
@juniorludima27279 ай бұрын
junior from nairobi, exactly what i have been looking for, very helpful video, thanks a lot .
@welingtonalmeida1018 Жыл бұрын
Incredible!!! I'm from Brazil and I Was lokking for this tutorial for a long time and I did not found. I had to search out of here.. Thank you so much.
@tkinterhub Жыл бұрын
Welcome
@ramthegamer5879 Жыл бұрын
You got a subscribe from me comrade....Keep on you hardwork, you will become famous among developers
@tkinterhub Жыл бұрын
Welcome, thank you so much
@saurabhgoyal6897 Жыл бұрын
Best Video for frames so far.Thanks
@mancampovestiminvatam Жыл бұрын
Exactly what I was looking for. Thank you!
@tkinterhub Жыл бұрын
Welcome
@kingkashyap_official Жыл бұрын
Looking it for a long time but finally..... Thanks @tkinter hub
@tkinterhub Жыл бұрын
Welcome
@TruongPham-ew1hs Жыл бұрын
Very nice, thank god i've found you, this is exactly what i need right now. Thank you very much
@tkinterhub Жыл бұрын
Welcome
@TruongPham-ew1hs Жыл бұрын
@@tkinterhub sorry i have a wonder ------ def home_page(): home_frame = Frame(main_frame) lb = Label(home_frame, text="Phạm Đình Cát Trường", font=("Times New Roman", 20)) lb01 = Label(home_frame, text="Hello word", font=("Times New Roman", 15)) lb.place(x=150, y=250) lb01.place(x=150, y=300) home_frame.pack() ______ in this function i see you use pack() to place position of lb, and i tried to use place(x=, y=) to fix its specific position, but it's not works, can you show me how to use place in this sentence
@tkinterhub Жыл бұрын
Hi If you want to place widgets in home_frame you need to propagate home_frame Here is Example: def home_page(): home_frame = tk.Frame(main_frame) lb = Label(home_frame, text="Phạm Đình Cát Trường", font=("Times New Roman", 20)) lb2 = Label(home_frame, text="Hello word", font=("Times New Roman", 15)) lb.place(x=150, y=250) lb2.place(x=150, y=300) home_frame.pack() # here changes home_frame. pack_propagate(False) home_frame.config(width=500, height=400)
@TruongPham-ew1hs Жыл бұрын
@@tkinterhub i tried to imitate you like this: ----- def home_page(): home_frame = Frame(main_frame) lb = Label(home_frame, text="Phạm Đình Cát Trường", font=("Times New Roman", 20)) lb.place(x=150, y=100) home_frame.pack_propagate(False) home_frame.config(width=500, height=400) ----- but it still not working, i tride simple way like this, and it works ----- lb = Label(main_frame, text="Phạm Đình Cát Trường", font=("Times New Roman", 20)) lb.place(x=50, y=100) ---- i don't know why your way doesn't work
@tkinterhub Жыл бұрын
Come inbox me via Facebook I will help out facebook.com/loop.while.79
@deepee5897 Жыл бұрын
Thank you this was very helpful for my assignment :)
@tkinterhub Жыл бұрын
Welcome
@anurasenarathna1703 Жыл бұрын
Very informative. Great video. Thank you very much for sharing your skills.
@tkinterhub Жыл бұрын
Welcome
@shortsvideo38022 жыл бұрын
iNshallah oNe Day You Will Became A Famous KZbinr💖🥰
@tkinterhub2 жыл бұрын
Thank You ❤So Much❤
@sg-gx4sd Жыл бұрын
mate i LOVE u ty iits ny first project and your playlist is great😍
@tkinterhub Жыл бұрын
Happy coding
@namanmittal6236 ай бұрын
thanks bro this helped me too much this was too easy
@RVideoR Жыл бұрын
I am from Saudi Arabia. Thank you very much bro
@tkinterhub Жыл бұрын
Welcome
@zentopia29022 жыл бұрын
That was very educational.
@hadervarilla1035 Жыл бұрын
Thanks for the video, I have a question... How can I introduce an image into the main side for each option? Grettings from Colombia help me!
@sg8nj9 ай бұрын
Excellent💯👍👏
@sepehrtarani9127 Жыл бұрын
This is very helpful, Thanks a lot🙂🙏
@tkinterhub Жыл бұрын
Welcome
@sawraja140 Жыл бұрын
Sir in my pycharm not work the attribute frame. Configure than what I do say me please
@AmmarBaig-u7r22 күн бұрын
What if i wanted to switch from a login page to These frames??? How would i do that pls tell urgent
@yuniekanand3019 ай бұрын
Your videos are awesome it helps me very much but it will be more helpful if you could provide the source code 🙂
@kotlabor Жыл бұрын
great job 'Shokran'
@sawraja140 Жыл бұрын
Hii sir,sir really your video is so knowledgeable please fast give us next lesson I'm wetting
@tkinterhub Жыл бұрын
Welcome will soon. I am working with a big surprise.
@sawraja140 Жыл бұрын
@@tkinterhub oh wow 😊
@furjackgaming10 ай бұрын
Sir plz help when I create a entry in home and enter something in it and if press about or any other option frame and go back to home the entry is empty what to do sir plz help
@tkinterhub10 ай бұрын
Hi Dear Subscriber, Sure i will help you Contact me via Facebook: facebook.com/loop.while.79
@danielDev-hg3jo Жыл бұрын
Excelente explicación.😀
@tkinterhub Жыл бұрын
Thanks
@unknown-society8037 Жыл бұрын
Hi, thanks for the video but there's something I want to ask... How can I set the home frame as a parent frame, I don't really know how to put it but I want the home frame to show up instead of the blank frame
@tkinterhub Жыл бұрын
Hi For land on Home Page when program start Use indicate function which we are creating in video Here Example: indicate(home_indicate, home_page) Put this function in end of code and above of root.mainloop()
@Giovoish7 ай бұрын
Thank you
@mcocmeliodas Жыл бұрын
thx for the video , but if you keep clicking on the buttons the message will show there is any way to even if you keep clicking won't happen?
@aysegulyilmaz73102 жыл бұрын
how do I let it land on home page automatically? so if I run the code it shows home page
@tkinterhub2 жыл бұрын
Use indicate function which we are creating in video For land on page when program start Example: indicate(home_indicate, home_page) Put this function in end of code and above of root.mainloop()
@aysegulyilmaz73102 жыл бұрын
@@tkinterhub thank you sm this worked!:)
@tehseenbaig319811 ай бұрын
i have a question, my interface is working but pages frame are not shown. i have followed all code but I cant show any frame when the button is clicked, need help
@tkinterhub11 ай бұрын
Hi dear subscriber, Contact me via Facebook I will help out: facebook.com/loop.while.79?mibextid=mqjNyhXYnDq2O9au
@aryadifohasmi53062 жыл бұрын
thanks a lot, very helpful
@tkinterhub2 жыл бұрын
Thank You
@unknown-person-14. Жыл бұрын
Its very good thank you so much
@tkinterhub Жыл бұрын
Welcome
@quinnjaguttis Жыл бұрын
in which python version is this because in the line with main_frame.configure(width=500, heigth=400) is an error
@howardalien2720 Жыл бұрын
python 3.9
@alexandragromova5597 Жыл бұрын
And what if insstead of text I have to import another frame??HELP
@tkinterhub Жыл бұрын
Contact me via Facebook: facebook.com/loop.while.79
@AifahGino Жыл бұрын
what does lb stands for or what does it mean? pls
@jonathanvioleta3578 Жыл бұрын
its just a parameter you can rename it any you want..
@tkinterhub Жыл бұрын
Right
@shortsvideo38022 жыл бұрын
Keep it up 😊❤️
@tkinterhub2 жыл бұрын
Inshahall
@-Rania-9 ай бұрын
what is fonction "page ()" for ?
@Custom-Tkinter Жыл бұрын
pls tell me why is ur window title color blue how???
@tkinterhub Жыл бұрын
! Hi Yes you can change your window title bar colour from Settings If you are in Windows 10 or ..7 etc Go To Settings > Select Personalization Options > Select Colors Option (From Left hand side Menu) Then You will see a Windows Colour menu
@Custom-Tkinter Жыл бұрын
@@tkinterhub thanks for that ur gui r cool and i have subscribed ur channel... I always wait for ur new video because u make very nice gui... I am just 15 yes old but inspired that I can do something with programming.... Love ur contents and Love #tkinter u can alps use the module customtkinter for best customisation in tkinter its also coll which can be used with tkinter code as well... 😅 😅 😅
@unknown-person-14. Жыл бұрын
"In the tapestry of life, every thread has a purpose. Even the darkest moments add depth and beauty to the overall design. Embrace the interplay of light and shadow, for it is in the contrast that we find the true essence of existence."
@tkinterhub Жыл бұрын
Nice
@ragheedmaloyan37302 жыл бұрын
Great!
@anthonybadmus6234 Жыл бұрын
Please how can i display the output of a function on a specific frame?
@tkinterhub Жыл бұрын
Contact me via Facebook: facebook.com/loop.while.79
@muditpalvadi1857 Жыл бұрын
I have put a picture using canvas in a frame, but when I turn it into function and call it, then picture disappears. Please tell me the solution if you could find one
@tkinterhub Жыл бұрын
Hi Dear Subscriber I suggest you to watch this video for solve image not showing in function: kzbin.info/www/bejne/gofCmpaDYpaLfNU
@tkinterhub Жыл бұрын
Otherwise Contact me via Facebook, I will help out: facebook.com/loop.while.79
@muditpalvadi1857 Жыл бұрын
@@tkinterhub tha ka man really appreciated
@CodingWorld-be7qh Жыл бұрын
Thank you soooo much
@tkinterhub Жыл бұрын
Welcome
@Aurora_artistry Жыл бұрын
Thanks a lot...😃
@tkinterhub Жыл бұрын
Welcome
@souravjana6587 Жыл бұрын
Really interesting ! Where can we find the coding in a whole ????
@tkinterhub Жыл бұрын
Thanks, but sorry we can't provide source code.
@superstars427 Жыл бұрын
Thank you so much
@chandrashekhar59612 жыл бұрын
Thanks
@DRogeryt11 ай бұрын
Could u pls tell me how to merge this code with my main application code pls reply asap
@tkinterhub11 ай бұрын
Hi dear subscriber, Contact me via Facebook I will help you to merge this code with your program:- facebook.com/loop.while.79
@someone-kw3ou Жыл бұрын
hey can you please create a video on how to create a mindmapping tool using python
@Myself_Yash Жыл бұрын
How to import image rather than main page content
@abdolabdollah1783 Жыл бұрын
Thanks.
@prumchhangsreng97910 ай бұрын
best thing ever
@SofiaTimm6 ай бұрын
could you use a voice changer instaed? having an actual voice talking would be a HUGE difference
@Eliteskys.20249 ай бұрын
Super
@drissacoulibaly8443 Жыл бұрын
thank you
@tkinterhub Жыл бұрын
Welcome
@unknown-person-14. Жыл бұрын
"Embrace the storms of life, for within them lie the winds of change and the seeds of growth. It is through facing adversity that we discover the strength and resilience that dwells within us, propelling us towards our true potential."
@tkinterhub Жыл бұрын
Nince
@joelpereira4719 Жыл бұрын
Can you sent de code pls. Nice video, thank you for the information
@chityinoo615011 ай бұрын
where can i get source code??
@ALESHAKAN2 жыл бұрын
Looks like creating some website
@medmounishak4125 Жыл бұрын
hi thak you for this video it was so helpful i want to ask you can i have this code please
@syedmumer234810 ай бұрын
Can we get the source code?
@ytreniizakat Жыл бұрын
pls project
@tkinterhub Жыл бұрын
Dear Subscriber We have Created 5 projects already Check Out Channel Playlist Section. New projects we will Create Soon.
@rihanreloaded6244 Жыл бұрын
Brother use your voice instead of this it will better.sometimes we. Can't understand and get tried of it
@tkinterhub Жыл бұрын
Dear Subscriber I appreciate your suggestion Maybe in the future i will use my own voice.