Hi, All.

I use cx_Freeze 4.2.3 with Python 3.2(32bit), on Windows XP-32bit,
Vista-64bit, 7-64bit.

I found cx_Freeze can treat Tkinter, but it can't treat Tix. Please fix
the problem.

Here's sample code that doesn't work with cx_Freeze. You can check this
code by replacing it with samples/Tkinter/SimpleTkApp.py.

And to check builded version, you must deactivate the Python installed
on system. (ex. rename the folder C:\Python32 to C:\Python32_)
----
#
# -*- encoding: utf-8 -*-

# requires/tested on python 3.2

import tkinter
import tkinter.tix as tix

root = tkinter.tix.Tk()
root.title('Button')
tkinter.Label(text='I am a button').pack(pady=15)
tkinter.Button( text='Button') .pack(side=tkinter.BOTTOM)
root.mainloop()
----
Thanks.
--
Suzumizaki-Kimitaka

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
cx-freeze-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to