Lookup All Customers CRM - Python Tkinter GUI Tutorial #31

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

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

  • @Codemycom
    @Codemycom  5 лет назад

    ▶️ Watch Entire Tkinter Playlist ✅ Subscribe To My RUclips Channel:
    bit.ly/2UFLKgj bit.ly/2IGzvOR
    ▶️ See More At: ✅ Join My Facebook Group:
    Codemy.com bit.ly/2GFmOBz
    ▶️ Learn to Code at Codemy.com
    Take $22 off with coupon code: youtube

  • @brookyil3519
    @brookyil3519 4 года назад +1

    As long as you keep saying " which is insaaanely cheaap' I will always click like button :)

  • @arivuraje336
    @arivuraje336 5 лет назад +3

    Thanks for sharing this .was looking for this actually

  • @petruorigen5993
    @petruorigen5993 5 лет назад +2

    Hi, can you do one video where to show how is possible to sort treeview database by date in asc.
    and if you want, how to print to the printer the database showed in treeview or some way?

  • @TechWithSabri
    @TechWithSabri 5 лет назад +1

    perfect sir thank you so much
    we are waiting you

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

    Great video. Can you please tell me how you created dark title bar?

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

      Those are just my Windows settings.

  • @vincenzo3292
    @vincenzo3292 4 года назад

    Great series. Am building a Covid infection data and rates tool for my employer, and need to use a GUI. One question, line 92 - that function - I am assuming I could pull data from a csv file (that the program downloads and saves to active directory) instead of sql. Thanks

  • @iosifabramov254
    @iosifabramov254 3 года назад

    Thanks man

  • @williamditto6364
    @williamditto6364 4 года назад

    These videos are awesome! Question: if i wanted to limit the results to 10 records in the display, where could I put something like while num < =10 ? I've tried numerous places and I am not getting the correct results. I would prefer not to use fetchmany.

    • @Codemycom
      @Codemycom  4 года назад

      Thanks! It's been a while since I wrote this code, I couldn't tell you where to loop but it should be pretty easy..

  • @Gorkh_Lee
    @Gorkh_Lee 4 года назад

    I need to make same kind of GUI window application but I donot need to get information from the database. I just need to manually enter it and I need to export it in excel file and an YAML file how would I do that?

  • @adrielbradley6677
    @adrielbradley6677 4 года назад

    In another video you used Toplevel() to make a new window instead of Tk(). Does it make a difference which is used?

    • @Codemycom
      @Codemycom  4 года назад

      Yes and no...depending on what you want to use the second window for. But mostly..no it probably doesn't matter.

  • @rjwren79
    @rjwren79 3 года назад

    say i still want entry boxes for first and last name, but in treeview I want last and first name in the same column formatted like this "Last Name, First Name". How can i do that?

    • @Codemycom
      @Codemycom  3 года назад

      You control how anything is output in the treeview...just switch it to whatever you want

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

    nice

  • @victorortiz1651
    @victorortiz1651 3 года назад

    why when i try to do the "text=x[5] + ' ' + x[1]" i get the error TypeError: unsupported operand type(s) for +: 'int' and 'str

    • @Codemycom
      @Codemycom  3 года назад +1

      one of the things you're tying to smoosh together is an integer and the other is a string. You can't + two different types like that. Try converting one or the other to a string

    • @victorortiz1651
      @victorortiz1651 3 года назад +1

      @@Codemycom Thank you for your answer! im going through your tutorials, 1 by 1, and im in ##36 where you teach how to do this, next month i will totally pay for your subscription, if you teach this good i definelly want in

    • @Codemycom
      @Codemycom  3 года назад

      @@victorortiz1651 awesome

  • @gopikrishna7814
    @gopikrishna7814 5 лет назад +1

    Plss solvee the problemss on leetcode by using python and explain us from scratch

  • @huqapani6515
    @huqapani6515 4 года назад

    in the list_customer function the other window is not trigger

    • @Codemycom
      @Codemycom  4 года назад

      check your code for errors