Hi Greg,
TypeError: unbound method __init__() must be called with instance as first
argument...
wxDialog.__init__(parent, id,
'Date/Time Dialog v%s' % CURRENT_VERSION,
wxDefaultPosition, wxSize(350,200))
Don't you need to add 'self' as the first parameter to this call? When calling the __init__ method of a superclass, I always include 'self' as the first parameter (before 'parent', etc)...
Cheers,
- Erik.