Sandra Heinzová

Results 6 comments of Sandra Heinzová

@Akascape Hi, thanks for reply. I have this function ```python def validate_date(date): min_date_possible = datetime(1958, 8, 4) max_date_possible = datetime.now() try: entered_date = datetime.strptime(date, "%Y-%m-%d") if min_date_possible

@Akascape Yes, I am using `date_entry.get()` method, to get entered value

@Akascape I tried to add ```python response = msg.get() if response == "Close": msg.destroy() ``` but there is no change.. the Messagebox open correctly, but when I press the button...

@Akascape yes, the issue is still happening. I quite solved it with this ```Python CTkMessagebox(app_ct, message="Wrong date") app_ct.after(10000, date_entry.focus_force) ``` but is hard to estimate amount of milliseconds 🤔 also...

@Akascape I am glad it's not some common issue, it's really weird it's not working properly on my system. But thank you for your effort