Re: [Tkinter-discuss] Make GUI

2007-03-30 Thread Vinu Vikram
Dear Bob Thank you very much for your detailed script. I could do my script using this. Thank you once again Vinu V. On 3/30/07, Bob Greschke <[EMAIL PROTECTED]> wrote: #! /bin/env python2.3 from Tkinter import * from sys import exit Root = Tk() InputVar = StringVar() OutputVar = StringVar()

Re: [Tkinter-discuss] Make GUI

2007-03-30 Thread Bob Greschke
#! /bin/env python2.3 from Tkinter import * from sys import exit Root = Tk() InputVar = StringVar() OutputVar = StringVar() ## # BEGIN: class Command # Pass arguments to functions from button presses and menu selections! Nice! # In your declaration: ...command = Command(

[Tkinter-discuss] Make GUI

2007-03-30 Thread Vinu Vikram
Dear All I wrote a python script which will take values from a configuration file and perform some operation and give an answer. I would like to make a gui for the script using Tkinter. Could anybody help me to do that? Suppose my script use a variable 'x' to calculate x^2. I would like to give t