Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #31.8K
~33.1K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

5 Posted Topics

Member Avatar for ihatehippies

I'm taking a look at this now, but have you tried using the widget inspection tool to see what events are generated by the DatePickerCtrl?

Member Avatar for gdtraveller
0
2K
Member Avatar for HoneyBadger

When you added the panel, you didn't call SetBackgroundColour on the panel, but you were still using the Frame's method. Instead of: #Panel for frame self.panel = wx.Panel(self) self.SetBackgroundColour('blue') It should be: #Panel for frame self.panel = wx.Panel(self) self.panel.SetBackgroundColour('blue')

Member Avatar for Rufus_1
0
11K
Member Avatar for willygstyle

It's still a valid problem 7 years later, and no solutions or comments! I found it in a web search and when I ran it, it was not close to being correct. The threading model was imported but never used, though I'm sure it was intended to be. I started …

Member Avatar for Gribouillis
0
5K
Member Avatar for abders

For those who found this via a Google search, the answer doesn't have to be "Change to python 3". When I've had this problem, all I've had to do is append "object" class to the list of parent classes, so: class Application(Frame): becomes class Application(Frame,object):

Member Avatar for Gribouillis
0
2K
Member Avatar for vegaseat

William_27, I think you misinterpret what the "short program" is used for. The short program is run separately to create a python source code snippet which is the base64 encoding (in this case, stored in the variable mid64). This code snipped is pasted into the source code of the playing …

Member Avatar for Rufus_1
5
12K

The End.