Re: [python-win32] running a python script on WinXP by icon double-clicking.

2010-08-05 Thread Gelonida
6, or can there any other option ! > > ---Vineet. > > > > --- On Wed, 4/8/10, Kevin Horn wrote: > > From: Kevin Horn > Subject: Re: [python-win32] running a python script on WinXP by icon > double-clicking. > To: "Vineet Deodhar" > Date: Wednesday, 4 A

Re: [python-win32] running a python script on WinXP by icon double-clicking.

2010-08-04 Thread Tim Roberts
Vineet Deodhar wrote: > I have created a py2.6 script for a simple GUI with Tkinter. > Saved it with .py extension and also as .pyw extension. > ... > 1) When run from command prompt as --- > D:\py>python entry.py > it runs nicely. > > 2) If I double-click on either entry.py or entry.pyw file, > n

Re: [python-win32] running a python script on WinXP by icon double-clicking.

2010-08-04 Thread Vineet Deodhar
wrote: From: Kevin Horn Subject: Re: [python-win32] running a python script on WinXP by icon double-clicking. To: "Vineet Deodhar" Date: Wednesday, 4 August, 2010, 12:11 First check that .py or .pyw files are associated with the proper executables. from an explorer window, choose

Re: [python-win32] running a python script on WinXP by icon double-clicking.

2010-08-04 Thread Gelonida
On 08/04/2010 08:30 AM, Vineet Deodhar wrote: > I have created a py2.6 script for a simple GUI with Tkinter. > Saved it with .py extension and also as .pyw extension. > > filename is entry.py > [CODE] > from Tkinter import * > from quitter import Quitter > > def fetch(): > print('Input => "%s

[python-win32] running a python script on WinXP by icon double-clicking.

2010-08-03 Thread Vineet Deodhar
I have created a py2.6 script for a simple GUI with Tkinter. Saved it with .py extension and also as .pyw extension. filename is entry.py [CODE] from Tkinter import * from quitter import Quitter def fetch():     print('Input => "%s"' % ent.get()) root = Tk() ent = Entry(root) ent.show='@' ent.in