Tkinter - Entry - Validation

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 29

  • @govinej
    @govinej 2 года назад +1

    Very helpful tutorial as usual, I will be using it in my projects 👍

  • @python-pyqt5982
    @python-pyqt5982 2 года назад

    Great production, enjoyable teaching style. I'm looking foward to many more videos.

    • @jobinpy
      @jobinpy  2 года назад

      Thanks for watching!

  • @barrykruyssen
    @barrykruyssen 2 года назад

    Another brilliant tutorial.

  • @Hubert4515
    @Hubert4515 2 года назад

    thanks once again for a cool tkinter vid :)

  • @mrkalvinbs1424
    @mrkalvinbs1424 2 года назад

    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.

    • @jobinpy
      @jobinpy  2 года назад

      I'll add that to my list of ideas to consider for a future video. Thanks!

  • @tomaszsasiak2026
    @tomaszsasiak2026 9 месяцев назад

    Cool explanation!

    • @jobinpy
      @jobinpy  9 месяцев назад

      Thanks for watching!

  • @parvanehemati158
    @parvanehemati158 10 месяцев назад

    thank you for your great learning

  • @astroxinity
    @astroxinity 2 года назад

    Very Helpful, Thanks!

    • @jobinpy
      @jobinpy  2 года назад

      Thanks for watching!

  • @bentsionben-david2769
    @bentsionben-david2769 2 года назад

    wow.. thank you so much.. 🙏🏻🙏🏻🙏🏻

  • @manfredschork299
    @manfredschork299 9 месяцев назад

    great, very helpfull

  • @harryterhuerne5288
    @harryterhuerne5288 9 месяцев назад +1

    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?

    • @harryterhuerne5288
      @harryterhuerne5288 9 месяцев назад

      Solved it !! I had to pass the root when I create the instance.

    • @jobinpy
      @jobinpy  9 месяцев назад

      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.

  • @bentsionben-david2769
    @bentsionben-david2769 2 года назад

    hi jobin.. every day we make count +=1 till your next video..

    • @jobinpy
      @jobinpy  2 года назад

      Hi, the next topic is planned, thanks!

  • @rainermuller-knoche5678
    @rainermuller-knoche5678 2 месяца назад

    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

    • @jobinpy
      @jobinpy  Месяц назад

      Hello, I've updated the link in the description to the documentation page for the Entry widget. Thanks.

  • @qouserparveen6611
    @qouserparveen6611 2 года назад

    Thank you
    Please make video on autocompletion entry without class

    • @jobinpy
      @jobinpy  2 года назад +1

      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.

    • @qouserparveen6611
      @qouserparveen6611 2 года назад

      @@jobinpy
      Thank you

  • @praveenremix6421
    @praveenremix6421 2 года назад

    after validation how delete character since backspace is not working

  • @thepoorsultan5112
    @thepoorsultan5112 2 года назад

    Noice

  • @bentsionben-david2769
    @bentsionben-david2769 2 года назад

    how to make multiple validation for different entry widgets? tnx 🙏🏻🙏🏻

    • @jobinpy
      @jobinpy  2 года назад +1

      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.