Simple server/client application

2005-10-24 Thread MBW
The following code is for a simple server/client asplication that allows the user to toggle between serve and or client modes and send/recieve a message however i am getting an Attribute error on my entry widgets when I try and call get() to get the port and ip address from those fields, I'm sure

Re: Simple server/client application

2005-10-24 Thread MBW
thanks both of you, I should have realized what was gonig on Cheers, Matt -- http://mail.python.org/mailman/listinfo/python-list

TK question

2005-10-20 Thread MBW
I have a class that is a windows in a GUI the following is the code: class optWin: def __init__(self): return None def __call__(self): self.root = tk() self.root.title(My title) self.root.mainloop() return None 1)Why doesn't this work when I go

Re: TK question

2005-10-20 Thread MBW
thank you very much, I have one more question that is tk related, I've use tkfileopendialog or whatever that name is to select files is there also a dialog for creating files, well not really creating them but allowing the same look and feel as many porgrams give for saving files? is there also