Re: Basic GUI

2007-09-12 Thread kyosohma
Don, On Sep 11, 10:54 pm, Don Hanlen [EMAIL PROTECTED] wrote: I'm writing a simple GUI that: ..gets info via telnet protocol (and sends) ..gets info via http (and sends) ..gets user-info from (currently) ...Tkinter Text windoze ...Tkinter buttons and such

Re: Basic GUI

2007-09-12 Thread Cameron Laird
In article [EMAIL PROTECTED], [EMAIL PROTECTED] wrote: . . . You can also use threads, which is a little bit more portable than using Python's fork methodology, or so I've read. The concepts on this page can be applied to any

Basic GUI

2007-09-11 Thread Don Hanlen
I'm writing a simple GUI that: ..gets info via telnet protocol (and sends) ..gets info via http (and sends) ..gets user-info from (currently) ...Tkinter Text windoze ...Tkinter buttons and such ..displays info in various Tkinter windoze ...graphic AND

Re: Basic GUI

2007-09-11 Thread Michele Simionato
On Sep 11, 11:54 pm, Don Hanlen [EMAIL PROTECTED] wrote: I could solve my problems with the following psuedo-code made into real code: import blah t = blah.fork(runthisprogram.py) #OK still in main t.sendinfo(info) info = t.receiveinfo()