Update MySQL Record - Python Tkinter GUI Tutorial #36

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ต.ค. 2024

ความคิดเห็น • 25

  • @Codemycom
    @Codemycom  4 ปีที่แล้ว

    ▶️ Watch Entire Tkinter Playlist ✅ Subscribe To My TH-cam 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 $30 off with coupon code: youtube1

  • @kapibara2440
    @kapibara2440 5 หลายเดือนก่อน

    Excellent content John😊 I am really making progress with Python and coding in general thanks to such videos 🎉

    • @Codemycom
      @Codemycom  5 หลายเดือนก่อน

      Happy to hear it!

  • @parsabahrambeik4381
    @parsabahrambeik4381 4 ปีที่แล้ว

    Thank you very much for your video. My learning about using Python Database was completed. Thank you very much.

    • @Codemycom
      @Codemycom  4 ปีที่แล้ว +1

      You are welcome!

  • @beautyboobear
    @beautyboobear 4 ปีที่แล้ว

    Hi, really like your instruction. I checked your Codemy. Is that correct that many courses I see on your TH-cam on Python Tkinter Desktop ... etc are not there? Or I just not finding them. Thank u

    • @Codemycom
      @Codemycom  4 ปีที่แล้ว

      The tkinter videos are all on youtube, not codemy. Here's the playlist bit.ly/2UFLKgj

  • @parsabahrambeik4381
    @parsabahrambeik4381 4 ปีที่แล้ว

    Thank you very much for your video.

    • @Codemycom
      @Codemycom  4 ปีที่แล้ว +1

      You are welcome

  • @afridinaseer
    @afridinaseer 4 ปีที่แล้ว +1

    Hi Sir, can we keep some columns size smaller than others because on my laptop if i search the records by last name and when i get the informations on the screen, the rows of the information go off the screen and does.t let me resize further as it looks to me that the size of the window has reached to the final size but the problem is ...i cant see the whole info. how can i fix this .thanks alot

  • @RyanDanielG
    @RyanDanielG 3 ปีที่แล้ว

    great vid, thank you

  • @prajapatiyash5930
    @prajapatiyash5930 2 ปีที่แล้ว

    Hi, user_id variable has the particular id but when I pass it in edit function then it only pass the last record id. i.e. if I have 2 record with id 4,5 and i print the id in the edit function :
    def edit_data(id,index):
    print(id)
    then instead of particular id i gets only last id that is 5 In my case. what's wrong here !
    i tried to print id on button text there is alright, but somehow in function it is only getting last id

  • @cpremix859
    @cpremix859 3 ปีที่แล้ว

    how do we make this executable for people to download?

  • @Acuce7ibd468j
    @Acuce7ibd468j 4 ปีที่แล้ว

    I dont know why its updating all the records instead of unique id . Please help me .

    • @Codemycom
      @Codemycom  4 ปีที่แล้ว

      Because there's an error in your code...retrace your steps

  • @escanorii5697
    @escanorii5697 4 ปีที่แล้ว

    Hi! can someone say i know list ['abc', 'bc','c'] and know tuple ('abc', 'bc','c') but WTF is this [('abc', 'bc','c')] ?? when i use str(x[0]) list and turple ==> "a" but only with [(_)] give me correct answer ==> "abc"
    a =[("ad", "2323", "sdada")]
    for index, x in enumerate(a):
    k = x[0]
    print(k)

    • @Codemycom
      @Codemycom  4 ปีที่แล้ว

      That's a list with one item in it...that one item is a tuple :-p