I have a button:
button3 = Button(app, text="Show Members", width=15, command=lambda: showLDAPMembers(yourName,yourPassword))
How do I bind the ENTER key to it? I tried doing:
app.bind('<Return>', showLDAPMembers(yourName,yourPassword))
but I get unresolved reference error..
def showLDAPMembers(yourName,yourPassword):
app.lb.delete(0,END)