I would like to add a hint value to my text box. It should look like this-
(like- "Enter your comments" in the picture, when there is nothing wroth on the field I want to be hint there)
my code-
field = 'UserName'
row = Frame(root)
lab = Label(row, width=15, text=field, anchor='w')
ent = Entry(row)
row.pack(side=TOP, fill=X, padx=5, pady=5)
lab.pack(side=LEFT)
ent.pack(side=RIGHT, expand=YES, fill=X)
how can I do this?
Thanks.