Hey guys, well how would you go about making a GUI, i've seen examples with Tkinter. But how would you place the button exactly where you want them. Also would you set an event for a button or field for example if the button is clicked it connects to a socket. Thanks, Clipper34.
Clipper34 0 Newbie Poster
Recommended Answers
Jump to PostHere is simple example using Tkinter GUI toolkit that is usually included with Python:
# using geometry manager place() for absolute layouts import Tkinter as tk def connect(): "make your connection" # your connection code here # ... root.title("Connected!") # test # the root window root = …
Jump to PostI'm using wxPython and I love it!
If you want to see Go to www.wxpython.org and if you will love it you might consider to go here at
All 8 Replies
shadwickman 159 Posting Pro in Training
bumsfeld 413 Nearly a Posting Virtuoso
Stefano Mtangoo 455 Senior Poster
Clipper34 0 Newbie Poster
shadwickman 159 Posting Pro in Training
Stefano Mtangoo 455 Senior Poster
Clipper34 0 Newbie Poster
Stefano Mtangoo 455 Senior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.