pygtk dynamic table

2006-10-12 Thread JyotiC
hi, i am making a gui, which looks like excel sheets. i want to give the user the facility of adding rows/columns at the run time. there is some initial size, but that can be increased any time during the executation of the code. what i have tried, is that i am using table. so when ever user incr

modules in diff. file

2006-09-18 Thread JyotiC
hi, i have a prog. and i want diving the code in different files. there will be one mail file which will call modules or variables(global) from differnet files how can i do this. code is very big and i it's getting difficult to manage in same file. thanx in advance -- http://mail.python.org/mai

prob with tkinter

2006-08-29 Thread JyotiC
hi, i am making a GUI using tkinter i need to get lot of data from user, it's in form of a excel sheets(many rows n columns) what i am using is grid for foramating, frame is from Toplevel, data collected from Entry widget I can't see most of the columns. I am not able to add scroll bar, i want it t

prob with tkinter

2006-08-29 Thread JyotiC
hi, i am making a GUI using tkinter i need to get lot of data from user, it's in form of a excel sheets(many rows n columns) what i am using is grid for foramating, frame is from Toplevel, data collected from Entry widget I can't see most of the columns. I am not able to add scroll bar, i want it t

Re: tkinter prob

2006-08-21 Thread JyotiC
thanx a lot it worked Peter Otten wrote: > JyotiC wrote: > > > got the error, > > but there is one more prob, button is not coming to enable again. once > > it is disabled > > the error it's giving is:- > > > NameError: global name 'ENABLED&#

Re: tkinter prob

2006-08-21 Thread JyotiC
", line 23, in com NameError: global name 'ENABLED' is not defined is ENABLED valid option? Eric Brunel wrote: > On Mon, 21 Aug 2006 08:50:29 +0200, JyotiC <[EMAIL PROTECTED]> wrote: > > > i have tried it out but it's not working. > > this

Re: tkinter prob

2006-08-20 Thread JyotiC
.var.get()==1: a.config(state=ENABLED) else: a.config(state=DISABLED) root=Tk() abc(root) root.mainloop() Fredrik Lundh wrote: > JyotiC wrote: > > > i am making a GUI using Tkinter, > > I have a button and a checkbutton. > > i want the button

tkinter prob

2006-08-20 Thread JyotiC
hi, i am making a GUI using Tkinter, I have a button and a checkbutton. i want the button to be enable when checkbutton is on and disble when the checkbutton is off. thanx -- http://mail.python.org/mailman/listinfo/python-list

Re: can this b done

2006-08-03 Thread JyotiC
thanx for the help Gary Herron wrote: > JyotiC wrote: > > hi, > > > > i hv a var of type IntVar, ca i get the name of this variable > > > > eg:- > > class someclass: > > def somefun(...): > >self.var=IntVar()

can this b done

2006-08-03 Thread JyotiC
hi, i hv a var of type IntVar, ca i get the name of this variable eg:- class someclass: def somefun(...): self.var=IntVar() def someotherfun(...): in this fun can i get the name of var. as in, can i get name var as a string 'var' Thanx

Re: Error using tkinter

2006-04-18 Thread JyotiC
Thanx a lot, that was the problem -- http://mail.python.org/mailman/listinfo/python-list

Error using tkinter

2006-04-18 Thread JyotiC
Hi, I am making a gui, in which specifiction are taken from user, which are wriiten to a file. and that file will bw executed. finalstr is a string f = open('crossManual.sh','w') f.write(finalstr) f.close() I am getting the error Exception in Tkinter callback Traceback (most r

Re: Tkinter vs PyGTK

2006-04-12 Thread JyotiC
Thanx for the help. Does all gui's take time to load. is there a way to dec this time. -- http://mail.python.org/mailman/listinfo/python-list

Tkinter vs PyGTK

2006-04-12 Thread JyotiC
I want to make a stand alone gui. Whose work is to get the diff options from user and run a shell script based on them. I wanna know which one is better to use Tkinter or PyGTK, in terms of efficiency and functionality. I hv read about Tkinter, but it takes too much time to load, is there a way