How to collect data from Tkinter user form? (either in excel or text file)
For example:
How to write value of following variable i.e. a (value needed:’x1′) to an excel sheet?
a=StringVar()
checkBox1=Checkbutton(root, text="text1", variable=a, onvalue="x1", offvalue="N/A")
checkBox1.place(relx=0., rely=0., relwidth=0., relheight=0.)
checkBox1.pack()
My Python Understanding level: Beginner
Python version: 2.7.3
GUI: Tkinter
Thanks in advance
Ok,