Hi JobinPy, thank you so much. It's a very interesting Video. Only one question: I'm trying to create your class in a different python file. Unfortunately it didn't work for me. I spent an hour or so to get it working. I think it's the root.register, which results in an error. Can you give me an example how to use your class in a different file, so I can make an instance of it in my main python file?
That's great, I'm glad you solved it. I think you could also use: self.register instead of root.register, without needing to pass in root when creating the instance.
Very nice tutorial, thats exact what I need, I am shure wrote the code exactly as you did but get errors cant finde the code to copy from. May be I did a mistake. The link in the description get a 404 error
Hi, thanks for watching my video. I prefer using classes when customizing widgets because I think it makes the code easier to read. I'll add your auto-completion suggestion to my list of ideas to consider for future videos. Thanks.
Do you mean the ability to check different validations, depending on the use of the entry widget? If so, you could have a parameter in your class for each type of validation. For example, one parameter for checking the format of a phone number (ie: check_phone_number_format=True), another parameter for checking the format of an email address (ie: check_email_address_format=True), etc.
Very helpful tutorial as usual, I will be using it in my projects 👍
Great production, enjoyable teaching style. I'm looking foward to many more videos.
Thanks for watching!
Another brilliant tutorial.
thanks once again for a cool tkinter vid :)
Great video.
It would also be interesting to make a video teaching how to create an entry with a mask( year/month/day) and validate a date.
I'll add that to my list of ideas to consider for a future video. Thanks!
Cool explanation!
Thanks for watching!
thank you for your great learning
Very Helpful, Thanks!
Thanks for watching!
wow.. thank you so much.. 🙏🏻🙏🏻🙏🏻
great, very helpfull
Hi JobinPy, thank you so much. It's a very interesting Video. Only one question: I'm trying to create your class in a different python file. Unfortunately it didn't work for me. I spent an hour or so to get it working. I think it's the root.register, which results in an error. Can you give me an example how to use your class in a different file, so I can make an instance of it in my main python file?
Solved it !! I had to pass the root when I create the instance.
That's great, I'm glad you solved it. I think you could also use: self.register instead of root.register, without needing to pass in root when creating the instance.
hi jobin.. every day we make count +=1 till your next video..
Hi, the next topic is planned, thanks!
Very nice tutorial, thats exact what I need, I am shure wrote the code exactly as you did but get errors
cant finde the code to copy from. May be I did a mistake. The link in the description get a 404 error
Hello, I've updated the link in the description to the documentation page for the Entry widget. Thanks.
Thank you
Please make video on autocompletion entry without class
Hi, thanks for watching my video. I prefer using classes when customizing widgets because I think it makes the code easier to read. I'll add your auto-completion suggestion to my list of ideas to consider for future videos. Thanks.
@@jobinpy
Thank you
after validation how delete character since backspace is not working
Noice
how to make multiple validation for different entry widgets? tnx 🙏🏻🙏🏻
Do you mean the ability to check different validations, depending on the use of the entry widget? If so, you could have a parameter in your class for each type of validation. For example, one parameter for checking the format of a phone number (ie: check_phone_number_format=True), another parameter for checking the format of an email address (ie: check_email_address_format=True), etc.