-
Multiple issues:
By default, it names the class CalendarCtrl when it should be wxCalendarCtrl. I understand that this is to make wxPython to work... Not sure how to resolve that. The rest are easy.
Generates the event
EVT_CALENDAR_SEL_CHANGE()
, when it should be
EVT_CALENDAR_SEL_CHANGED()
Generates the event code for the above (and other) events as:
virtual void...
2009-04-27 17:25:09 UTC in wxGlade
-
I figured it out, but I don't know if it's intended behavior...
The first query works fine:
cur.execute(newgamequerry )
listing = cur.fetchall()
if cur.rowcount == 0:
but the second does not:
cur.execute(querry)
if cur.rowcount == 0:
The difference, is the second doesn't care about what is actually IN the result set, so it never called fetchall(). It only cared if rows...
2009-04-02 21:35:28 UTC in Simple MS SQL Python extension module
-
There is no error message given, except by the code I posted...
The formatting got all goofed up by the post... But here:
newgamequerry = "SELECT TOP 1 Word FROM WordGame where choosable = 1 ORDER BY NEWID(); "
cur.execute(newgamequerry )
listing = cur.fetchall()
listing contains 1 row, the randomly requested word.
Then, that word is used in a new querry:
querry =...
2009-04-02 14:12:37 UTC in Simple MS SQL Python extension module
-
sirrace changed the public information on the NSIS Easy Installer project.
2009-04-02 08:04:47 UTC in NSIS Easy Installer
-
A few years ago, I wrote a small word game for some friends and I to play. But, after updating to pymssql 1.0.1 form 0.8 and python 2.6.1 from 2.5.3, it quit working, and I have no idea why... I modified pieces of code that changed, but for some reason I don't understand why this code is failing..
Here's a piece of code I got to fail every time from the game:
con =...
2009-04-02 07:48:04 UTC in Simple MS SQL Python extension module
-
Still required in 1.0.9, but the installer validates that it's installed.
2007-08-23 16:14:25 UTC in NSIS Easy Installer
-
Logged In: YES
user_id=1551734
Changed priority to low since there is a workaround.
2006-07-28 18:23:07 UTC in wxGlade
-
When creating menus with sub-menus, the main menu and
first sub menus are created properly, but subsequent
submenus are not.
Example menu structure:
TopMenu
+SubMenu1
|+DeepMenu1
|+DeepMenu2
|+DeepMenu3
+SubMenu2
.+DeepMenu4
Generates the following code problem (Relevent snippet):
wxMenu* wxglade_tmp_menu_1_sub = new wxMenu();
wxglade_tmp_menu_1_sub->Append(wxNewId()...
2006-07-28 18:21:29 UTC in wxGlade
-
Version 1.0.8 requires the dot.net framework to be
installed. The executable has no dot net code in it,
however since it was compiled in Visual Studio, that
requirement got tacked on.
It gives an error about missing MSVCR80.dll when that
happens.
Another revision will be compiled under another
compiler to remove this requirement.
2006-07-27 13:07:15 UTC in NSIS Easy Installer
-
NSEI public is released at last!
Still a lot to set up before everything looks nice. But it might work!
2006-07-26 20:02:01 UTC in NSIS Easy Installer