Python Forum
[Tkinter] tkinter calendar widget
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] tkinter calendar widget
#3
(Mar-20-2018, 08:07 PM)thegodofcheese Wrote: this isn't selecting the correct day of the week. not sure how to tweak that part but something isn't right here...

https://ibb.co/nHR4VH

Just change this

#lines
#lines

class Calendar:
def __init__(self, parent, values):
self.values = values
self.parent = parent
self.cal = calendar.TextCalendar(calendar.SUNDAY)
self.year = datetime.date.today().year
self.month = datetime.date.today().month
day = datetime.date.today().day
self.wid = []
self.day_selected = day

#more lines

(May-18-2018, 05:22 PM)CandyMo0n Wrote:
(Mar-20-2018, 08:07 PM)thegodofcheese Wrote: this isn't selecting the correct day of the week. not sure how to tweak that part but something isn't right here...

https://ibb.co/nHR4VH

Just change this

#lines
#lines

class Calendar:
def __init__(self, parent, values):
self.values = values
self.parent = parent
self.cal = calendar.TextCalendar(calendar.SUNDAY)
self.year = datetime.date.today().year
self.month = datetime.date.today().month
actualday = datetime.date.today().day
self.wid = []
self.day_selected = actualday

#more lines
Reply


Messages In This Thread
tkinter calendar widget - by metulburr - Nov-03-2016, 08:10 PM
RE: tkinter calendar widget - by thegodofcheese - Mar-20-2018, 08:07 PM
RE: tkinter calendar widget - by CandyMo0n - May-18-2018, 05:22 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  A Tkinter Widget-Templater/GUI Builder for Linux/Mac rootVIII 2 3,426 Jun-09-2020, 02:21 AM
Last Post: rootVIII

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020