hi all , I like to write a program which I input the dates and amounts of say 10 checks , and print out the total amount of checks and number of days thet are apart from each other on another entry widget . the code I have done sofar is below , I just don't know how to associate variables to the (month/day) and the amount . is this where I use the IntVar() and StringVar()? please explain these to me too . thanks
from Tkinter import * # it is easier for me to do it this way
root =Tk()
lable1 =Label(root,text = " please enter the date : mo/day ")
lable1.grid(row=0,sticky=W)
e=Entry(root,takefocus=1).grid(row=0,column=1)
label2 = Label(root,text=" enter the amount " )
label2.grid(row=1,sticky=W)
e1=Entry(root).grid(row=1,column=1)
root.mainloop()