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
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
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
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
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