I watched a few other videos from different people to clear up some of my confusion, and none of them broke it down and explained why I'm doing certain things. This video was very direct and explained what the other 5 videos failed to do. Great job and presentation!
Hi Jobin, I subscribed to your channel because of a previous video that I watched so I decided to check your other videos out, and to my surprise, this video resolved the very issue that I was having! Thank you so much! You are a great teacher.
good video, exactly what i was looking for, i am going to try and implement what you demonstrated in the coding of the program i am currently building, i would have appreciated it more if you had included how to input the data instead of hard coding it in, i have a solution for that, but i am positive yours would have been much cleaner, thanks again, i am getting a positional argument error
@@jobinpy i am trying to clear two inputs, entry.delete doesn't work, any suggestions, i have tried configure(text=" "), but doesn't do anything, the entries stack inside the input.
@@jobinpy yeah, tried that, problem is the data i want to remove is in a Label, so delete doesn't work and i can't find anything else that does, i will probably attempt to design some text inputs for my needs, if possible in tkinter and python, but thanks, good suggestion.
Is there a reason you passed a master to tk.Toplevel? (genuine question of a beginner) I saw in the options that it was optionnal, so couldn't you just have passed the username as the only argument without needing the master? Thanks
Good question. Not passing in master to tk.Toplevel is indeed possible (in most cases the toplevel window would make the first tk window the master automatically), but I always pass it for consistency and because I'm used to it.
Why do you prefer class inheritence instead of composition, is there any reason that I don't know yet? I ask this question, because all component based web applications construct their components via composition further I know how difficult to maintain inheritence based approach from ancient MFC applications. But all OO tkinter courses prefer class inheritence, maybe there is a good reason. Consider how difficult to switch from Tkinter to CustomTkinter if you prefer class inheritence.
Hi Jobin, nice channel, itsd really useful for begginers like me. I am trying to make tkinter program reading an MQTT calback function to get values. Could you help explaining the basics for linking an external callback to tkinter normal loop event ? Thanks for all
Thats the best Channel for Infos to TkInter I found on RUclips! You are the only one who shows how to organize code in a professional way. Thank you!
Thanks for your kind words!
Bro you are the Bob Ross of Python Instruction!!!! Thanks! So so much!!!
Thanks for your kind words!
@@jobinpy When I watch a video often it means you did a fantastic job in engaging me. Great explanations. I learned more this time around. Thank You !
I watched a few other videos from different people to clear up some of my confusion, and none of them broke it down and explained why I'm doing certain things. This video was very direct and explained what the other 5 videos failed to do. Great job and presentation!
Glad it helped, thanks for watching!
SHEEEEESHHHHHH the most effective teacherrrrr! SANA GANYAN RIN SI ROMAN HAHAHAHAHHAHA
Hi Jobin, I subscribed to your channel because of a previous video that I watched so I decided to check your other videos out, and to my surprise, this video resolved the very issue that I was having! Thank you so much! You are a great teacher.
Awesome, thank you! Thanks for watching
Clear and concise, and well presented. Thanks for taking the time and effort of sharing :)
Best regards.
Very good job of explaining instantiating classes and passing in variables.
Excellent video, thanks man!!
Glad you liked it!
Good video Jobin. Thank you.
thank you , keep going !
Thanks!
Very lovely content ! Thank you...
Thanks for watching!
Great tutorial! many thanks
I'd like to have some more info about the frame you create in each class, why do you do that? Thanks, you have some very good content.
I love the way you teach ! very nice
Thanks for watching!
very nice video sir !!! Thank You
Thanks for watching!
good video, exactly what i was looking for, i am going to try and implement what you demonstrated in the coding of the program i am currently building, i would have appreciated it more if you had included how to input the data instead of hard coding it in, i have a solution for that, but i am positive yours would have been much cleaner, thanks again, i am getting a positional argument error
Glad it helped! I have another video related to getting the user's input from a separate window. The URL is: ruclips.net/video/QGtTHwn5xc4/видео.html
@@jobinpy i am trying to clear two inputs, entry.delete doesn't work, any suggestions, i have tried configure(text=" "), but doesn't do anything, the entries stack inside the input.
@@sovereignlivingsoulTry .delete(0, "end")
@@jobinpy yeah, tried that, problem is the data i want to remove is in a Label, so delete doesn't work and i can't find anything else that does, i will probably attempt to design some text inputs for my needs, if possible in tkinter and python, but thanks, good suggestion.
learned a lot here. thanks
Thanks for watching!
Is there a reason you passed a master to tk.Toplevel? (genuine question of a beginner) I saw in the options that it was optionnal, so couldn't you just have passed the username as the only argument without needing the master? Thanks
Good question. Not passing in master to tk.Toplevel is indeed possible (in most cases the toplevel window would make the first tk window the master automatically), but I always pass it for consistency and because I'm used to it.
Why do you prefer class inheritence instead of composition, is there any reason that I don't know yet? I ask this question, because all component based web applications construct their components via composition further I know how difficult to maintain inheritence based approach from ancient MFC applications. But all OO tkinter courses prefer class inheritence, maybe there is a good reason. Consider how difficult to switch from Tkinter to CustomTkinter if you prefer class inheritence.
Hi Jobin, nice channel, itsd really useful for begginers like me. I am trying to make tkinter program reading an MQTT calback function to get values. Could you help explaining the basics for linking an external callback to tkinter normal loop event ?
Thanks for all
Nice intro
Thanks!
This series of videos is clearly underrated.
But in just a couple of days you passed from 460 to 570 subs... I hope you hit 1000 by dec 15th
God Speed
Why pass username as an argument? You could just go self.username = master.username...
That's a good idea, thanks for sharing.