Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.1k views
in Technique[技术] by (71.8m points)

Python, tkinter, treeview: unable to populate DateEntry box or the multiline Text box from the treeview selected row

getting error 'DateEntry' object has no attribute 'set' also no error but the Text box does not get filled any help would be appreciated, have been unable to find anything on the internet

    def tree1_selected(ev):
        viewInfo = my_tree1.focus()
        selected_data = my_tree1.item(viewInfo)
        row = selected_data['values']
        #cal.set([1]) # this is a tkcalender DateEntry Box
        TR.set(row[2])
        WO.set(row[3])
        cust.set(row[4])
        addr.set(row[5])
        misc.set(row[6])
        issue.set(row[7])
        #notes.set(row[8]) # this is a multi line Text box 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...