On 10/02/17 15:56, Pooja Bhalode wrote:
> root = Tk()
> root.title("Design of Experiments with Parameter Estimation")
> root.geometry("1000x1000")
>
> def DesignPoint():
> rootdesign=Tk()
You should o0nly have one root. This create a new root
everytime you xcall Designpoint and even if thats
Hi Peter,
The code is as shown below. I have put it in the manner you have told me.
root = Tk()
root.title("Design of Experiments with Parameter Estimation")
root.geometry("1000x1000")
def DesignPoint():
print "Inside Design Point"
rootdesign=Tk()
rootdesign.title("Estimation of Exp
Pooja Bhalode wrote:
> Hi,
>
> I have a bunch of checkbuttons in my code and a default settings button
> which restores the original setting in the checkbuttons. The code is given
> below:
>
>
> var1 = IntVar()
> var2 = IntVar()
> var3 = IntVar()
> var4 = IntVar()
> Checkbut
Hi,
I have a bunch of checkbuttons in my code and a default settings button
which restores the original setting in the checkbuttons. The code is given
below:
var1 = IntVar()
var2 = IntVar()
var3 = IntVar()
var4 = IntVar()
Checkbutton(frame1, text = "Vertices", variable=var1,