Search found 6 matches

by Sami Hamlaoui
Wed Aug 25, 2010 7:42 pm
Forum: Compiler / Linking / IDE Related
Topic: Fixed wxWidgets 2.9.1 project files Visual Studio 2010
Replies: 12
Views: 34530

wxWidgets 2.9.1 I've updated the project files for wxWidgets 2.9.1. The release used is the one on the home page (i.e. not the daily snapshot). Please let me know if you experience any issues with these project files. There have been a lot of downloads but no replies, which makes me think that eith...
by Sami Hamlaoui
Tue Jul 06, 2010 6:24 pm
Forum: Compiler / Linking / IDE Related
Topic: getting started in VS2010
Replies: 6
Views: 1974

As you found out, when you convert project files with VS2010 it doesn't overwrite the old ones (as the .dsw is a different format), but instead saves them in the format native to the version of VS you're currently using. Also, VS2010's conversion isn't perfect for wxWidgets. I uploaded a set of fixe...
by Sami Hamlaoui
Sun Apr 25, 2010 6:19 pm
Forum: Compiler / Linking / IDE Related
Topic: Fixed wxWidgets 2.9.1 project files Visual Studio 2010
Replies: 12
Views: 34530

Fixed wxWidgets 2.9.1 project files Visual Studio 2010

Please note that this is out of date. In wxWidgets 2.9.3+, simply open wx_vc9.sln in VS2010, and perform the project conversion, and everything will build correctly. wxWidgets 2.9.0 As some people are experiencing errors when converting the existing project files to MSVC 2010 (including myself), I'...
by Sami Hamlaoui
Tue Aug 16, 2005 10:36 am
Forum: The Code Dump
Topic: Latest wxTreeMultiCtrl Code
Replies: 36
Views: 18147

:shock: :shock: :shock:

downloading now...

Any chance of getting this integrated into wxDesigner?
by Sami Hamlaoui
Tue Jul 19, 2005 10:35 am
Forum: General Development
Topic: Continuous drawing of a GLCanvas
Replies: 0
Views: 903

Continuous drawing of a GLCanvas

At the moment I am redrawing my GLCanvas in the following manner: void Viewport::OnIdle (wxIdleEvent &event) { Refresh (); } This is all well and good, but when I resize the window, bring up a menu, etc, it stops recieving OnIdle events, therefor no drawing occurs. Is there any way to keep the c...
by Sami Hamlaoui
Mon Jul 11, 2005 2:02 pm
Forum: C++ Development
Topic: FAQ
Replies: 35
Views: 129116

Why does my program crash at this line in list.cpp? if ( key == current->m_key ) [/size][/b] It crashes there because you compiled wxWidgets with the default structure alignment in your compiler/IDE, but then in your project set it to some fixed value (1 byte, 2byte, 4byte, etc). You must either co...