[Tutor] TKinter - display dialog w/o using mainloop()

Bob Gailer ramrom@earthling.net
Fri Mar 7 13:26:01 2003


--=======FB74737=======
Content-Type: text/plain; x-avg-checked=avg-ok-24A13915; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 8bit

class Dialog(Frame):
   def __init__(self):
     Frame.__init__(self, None)
     self.pack()
     self.Label['text'] = 'initial text'
     self.Label.pack({"side": "top"})
d = Dialog()

How do I get the dialog box to be visible w/o using mainloop(). I want to 
show the dialog and then do other things in my program, which might result 
in reassigning d.Label['text'] = 'new text'

Bob Gailer
mailto:ramrom@earthling.net
303 442 2625

--=======FB74737=======
Content-Type: text/plain; charset=us-ascii; x-avg=cert; x-avg-checked=avg-ok-24A13915
Content-Disposition: inline


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.459 / Virus Database: 258 - Release Date: 2/25/2003

--=======FB74737=======--