My first GUI - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Python Programming Language (https://www.supportforums.net/forumdisplay.php?fid=32) +---- Thread: My first GUI (/showthread.php?tid=4138) Pages:
1
2
|
My first GUI - uber1337 - 01-02-2010 Well here is my first GUI(gooey :p). It's a "game" technically speaking , although a really crappy game. Just testing out buttons and updating Entry fields. It isn't very neat and well I think I did some unnecessary things, but I just wanted to make sure it would work. Basically you press one of three buttons, and after you press a button, the round changes, and you money either goes up 100 or down 100 whether you win or lose. Pretty stupid but again, I was testing things out. Code: from Tkinter import * EDIT: fixed some errors in the source code. RE: My first GUI - Zomaian - 01-02-2010 Screeny ? RE: My first GUI - uber1337 - 01-02-2010 sure one sec Edit: Spoiler (Click to View) RE: My first GUI - Zomaian - 01-02-2010 Mm looks interesting, I will try it ;). RE: My first GUI - Zoidberg - 01-02-2010 Good job man. Shame I keep losing RE: My first GUI - uber1337 - 01-02-2010 (01-02-2010, 07:24 PM)Holy Wrote: Good job man. Shame I keep losingYeah it gets kinda old after like 5 seconds. I was just testing out different functions. :p RE: My first GUI - Yoshi - 01-04-2010 Its nice, ill mite try and use your source to make my own GUI programs if ya dont mind. RE: My first GUI - uber1337 - 01-04-2010 (01-04-2010, 03:19 AM)Fail Ninja Wrote: Its nice, ill mite try and use your source to make my own GUI programs if ya dont mind. not at all RE: My first GUI - Gaijin - 01-05-2010 I don't mind Tkinter, but I suggest you to start early with WX or QT, I heard wx is c0ol to use and all, but I'm using QT.. Other than that nice job! RE: My first GUI - uber1337 - 01-05-2010 (01-05-2010, 01:30 AM)Master of The Universe Wrote: I don't mind Tkinter, but I suggest you to start early with WX or QT, I heard wx is c0ol to use and all, but I'm using QT.. Yeah I know, every time i ask fallen for Tkinter help, he just says wxPython is better! And i agree with him, its just my book covers Tkinter, so im starting with that. |