Does anyone know if it is possible (and if yes, how) to bind an event (Python + Tkinter on MS Windows) to a system date change?
I know I can have .after ...
I am building a dropdown menu that whould be used to choce a starting date. It has 3 cascades named year, month, day. The contents of the day cascade is generated ...
I am a little stymied with this attempt to enter a date in Tkinter using the OptionMenu() method. I am not quite sure how to retrieve the data, any help is appreciated: Code: Select all # enter a date using Tkinter dropdown OptionMenu # label update seems to lag 1 click behind import Tkinter as tk def click(e): ...