First  |  Prev |  Next  |  Last
Pages: 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
Linking errors using OpenGL
Hi everyone, I'm using OpenGL with wxWidgets and everything is compiling fine except during the linking process. I had these errors : 1>Linking... 1>OGLCanvas.obj : error LNK2001: unresolved external symbol "protected: static struct wxEventTable const wxGLCanvas::sm_eventTable" (?sm_eventTable(a)wxGLCanvas@@1Uw... 2 May 2007 04:56
wxMac: wxMessageBox hanging
wxMac 2.8.3 XCode 2.4.1 OSX 10.4.7 Hi, I'm getting some weird behavior. My app is hanging up within a modal dialog called by wxMessageBox. The call looks like this: wxMessageBox("First run from an older version."); Earlier in the app, I call wxMessageBox without problem. If I run with the debugger and ... 27 Apr 2007 01:11
Compiling the sample 'minimal' with VC++ 8 pro
Hi everyone. After succesfully compiling wxWidgets, i tried to compile the sample 'minimal' but during the process, this error occured : 1>wxmsw28d_core.lib(appcmn.obj) : error LNK2001: unresolved external symbol "protected: virtual class wxString __thiscall wxAppTraitsBase::GetAssertStackTrace(void)" (?GetAsse... 24 Apr 2007 11:39
Compiling the sample "minimal" with VC++ 2008
Hi everyone. After successfully compiled wxWidgets 2.8.3 with VC++ 2008, I tried to compile the sample "minimal". Unfortunately an error occurs during the process : 1>wxmsw28d_core.lib(appcmn.obj) : error LNK2001: unresolved external symbol "protected: virtual class wxString __thiscall wxAppTraitsBase::GetAsser... 24 Apr 2007 12:10
wxImage->SetAlpha
Hi, I have a wxImage which I want to make see-through. What would be the best way of achieving this? char alpha[WIDTH* HEIGHT]; /* set the values here */ or should it be char alpha[WIDTH*HEIGHT*3]; !? wxImage i(_T("file.png")); i->SetAlpha(alpha,true); wxBitmap *b = new wxBitmap(i); Is this the proper wa... 21 Apr 2007 07:53
Sending a large request via HTTP, no response at wxGTK
Hi, I've been trying to send a large wxString (1KB - 50KB) to my website. It works fine at Windows however at linux it's giving me problems: If the amount of data is more then 5KB, I never get a response. wxWidgets 2.8.1, Ubuntu Feisty Fawn You can find the code at http://www.dutchmega.nl/mess/wx/ ... 14 Apr 2007 10:20
wxAuiNotebook / wxAUI_NB_BOTTOM
Hello, I have recently updated my project to use wxAUI, from wxDockit. I would like to be able to create a wxAuiNotebook using the wxAUI_NB_BOTTOM style, but notice that this behaviour is not yet implemented (I have the wxWidgets 2.8.3 sources). Being wholly unfamiliar with the wxAUI code, I was wondering if any... 13 Apr 2007 06:30
How to load a file into memory
I have a file on disk that I want loaded into memory using wxMemoryFSHandler::AddFile. The easiest way I see to do this is (untested): wxFileSystem fs; wxFSFile *fsFile = fs.OpenFile(strFileName); if(fsFile != NULL) { size_t filesize = fsFile->GetStream()->GetSize(); char *vData = new char[filesize]; ... 6 Apr 2007 12:22
Re[2]: compiling wxThings and wxPlotCtrl
On 4 Apr 2007 08:26:40 -0700 Samuel <samuelvoiron(a)gmail.com> wrote: S> And for the sample, here is what I get : S> fatal error LNK1104: couldn't open file 'wxmsw28d.lib' You're trying to build whatever you're building (this is not clear any more by this point, to me at least) in monolithic configuration.... 4 Apr 2007 11:47
compiling wxThings and wxPlotCtrl
Hello crazy wxCoders !! I copy/paste here an e-mail I've sent to John Labenski, in case other guys have any idea to help me... Thanx ;) First of all thank you very much for the job you've done on some wxWidgets modules. Excuse for this long E-mail but I really need some help on some of the modules you've d... 5 Apr 2007 05:25
First  |  Prev |  Next  |  Last
Pages: 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25