Python Tkinter Project - Restaurant Order System - Part 1 - GUI Frontend

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

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

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

    Halo,
    I am so grateful to you (and certainly to more people like me) for what you do here. I am now 73 years old and want to continue learning. Since I cannot afford extra expenses for books or courses to do it, are people like you a precious gift to me. I hope that even more people like you will follow your example.

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

    I've enjoyed all your tutorials so far. Very interesting and great explanations. I've found quite a few answers to problems that have being holding up my progress, so thank you very much. Looking forward to the next one.

  • @daffautama6512
    @daffautama6512 Год назад +2

    Very usefu for mel and your describe per line of code so good sir

  • @digitalmachine0101
    @digitalmachine0101 8 месяцев назад

    Good information

  • @sphanie
    @sphanie 5 месяцев назад +1

    empanada lover here hahaha

  • @mseccato
    @mseccato Год назад

    very nice ! how can we run it on ipad as you mentioned ?

    • @ThinkingThroughCode
      @ThinkingThroughCode  Год назад

      Hey there, you will need to add python and an IDE on your ipad. Remember this is a scrip[t that runs on only python. So if your ipad does not have python installed it will not work. Thanks for the comment!

  • @Okkm1337
    @Okkm1337 Год назад

    Can we add GIF instead of image?

  • @mkaberli614
    @mkaberli614 4 месяца назад +1

    ODER system?

  • @ps5games821
    @ps5games821 Год назад

    I got to 5.17 in the video and my code doesn't run , wrires Process finished with exit code 0

    • @ThinkingThroughCode
      @ThinkingThroughCode  Год назад +1

      Hey there, actually if the output is of exit code 0, it mean your code was able to properly run with no errors. Now, I am not entirely sure what you mean with "does not run" it could be that it does not display ? or the window is not shown ?.
      Here is what I advise, if your exit code is 0 it means that you probably do not have a syntax issue so there are no errors in the things you typed. Or else, this would be shown and you would not get that output.
      My guess would be to first check if your window did appear. It is possible that sometimes it does show on your screen but since we did not specify a size of the window at first it will only show as a very small reduce window. Here is a test that you can do to see if this was the issue:
      1 - Add the line of code : root.geometry("200x200")
      What this does is that as soon as you run your program, the window will have a size of 200 x 200. Now It is possible that you will find the window then.
      If you do not have any widgets inside of your window or any specific size specified, your window will shrink and compress. but it will still run (hence, why you get the exit code 0).
      If you have widgets inside your window, make sure to specify their size or else they will also be compressed. The way tkinter works is that if you do not specify a size, everything is automatically reduced to the smallest possible in order to optimize space. This is part of geometry management.
      I would also suggest that you look at my code in the description (GitHub). I would probably just read it side by side with your code and see where things go wrong.
      I hope this helps !