Search found 35 matches

by thor36
Fri May 02, 2014 7:35 pm
Forum: Compiler / Linking / IDE Related
Topic: CodeBlocks - undefined reference to '_time32'
Replies: 1
Views: 2119

Re: CodeBlocks - undefined reference to '_time32'

Problem solved now. I had to change some directory addresses by just adding "48" to it , for example :

Libraries\wxWidgets3.0\lib\gcc_dll\mswu to Libraries\wxWidgets3.0\lib\gcc48_dll\mswu
by thor36
Fri May 02, 2014 11:38 am
Forum: Compiler / Linking / IDE Related
Topic: CodeBlocks - undefined reference to '_time32'
Replies: 1
Views: 2119

CodeBlocks - undefined reference to '_time32'

Hello. I am using CodeBlocks 13.12 with default settings on Win7 x64 ( on laptop & desktop ). I installed wxWidgets 3.0 by help of wxPack 3.0 . I have a test project that worked well on my desktop, and now I tried to run it on laptop and mimic the linker settings. I get the "build failed&qu...
by thor36
Fri Mar 07, 2014 10:10 pm
Forum: Open Discussion
Topic: Learning OpenGL 3, since video card won't support 4
Replies: 10
Views: 7601

Re: Learning OpenGL 3, since video card won't support 4

Manolo, if it is not in your interest to keep this thread alive, I understand. But if you are referring to the forum rules, let me explain that I have carefully chosen a sub-forum. And this sub-forum says : This forum is reserved for everything you want to talk about. It could be about programming, ...
by thor36
Fri Mar 07, 2014 2:17 pm
Forum: Open Discussion
Topic: Learning OpenGL 3, since video card won't support 4
Replies: 10
Views: 7601

Re: Learning OpenGL 3, since video card won't support 4

First, thank you for all the resources you have listed. I got to say I have stumbled upon a few of them before, but others are new to me and seem really great. By presenting me with these tutorials, you have given me a chance to easier explain what problem I had in mind, regarding my search of resou...
by thor36
Wed Mar 05, 2014 10:21 pm
Forum: Open Discussion
Topic: Learning OpenGL 3, since video card won't support 4
Replies: 10
Views: 7601

Re: Learning OpenGL 3, since video card won't support 4

Manolo, your tips and answers are very valuable, since I am just beginning to learn OpenGL. As you can see, I lack many basics and also missing the big picture of the OpenGL development timeline. This is much easier to grasp for someone who's been in the business for years. Can you please point me t...
by thor36
Tue Mar 04, 2014 12:16 pm
Forum: Open Discussion
Topic: Learning OpenGL 3, since video card won't support 4
Replies: 10
Views: 7601

Re: Learning OpenGL 3, since video card won't support 4

Thank you for your answer, it is very informative for a beginner. Can you explain me, what do you mean by special OGL context ? You state that modern OGL software uses shaders, which are a little more recent invention. So I should probably know what I have to do to make use of them. Since it's wxWid...
by thor36
Sun Mar 02, 2014 12:51 am
Forum: Open Discussion
Topic: Learning OpenGL 3, since video card won't support 4
Replies: 10
Views: 7601

Learning OpenGL 3, since video card won't support 4

Hi I am attempting a purchase of a laptop, that has ATI Mobility Radeon HD 5650 video card. I wanted to begin learning OpenGL 4, and have acquired a modern literature on that latest version of the library. The video card on the laptop however supports only OpenGL versions up to 3.2 . Presently, I do...
by thor36
Sun Feb 09, 2014 2:30 pm
Forum: Compiler / Linking / IDE Related
Topic: wxmsw30u_gcc48.dll missing from your computer
Replies: 8
Views: 6502

Re: wxmsw30u_gcc48.dll missing from your computer

In the same folder as EXE. Or build wxWidgets as a static library, that way no DLL will be required. When I built and ran the projects yesterday, it worked. And I never had to put any DLL anywhere, and no DLL was in the folder with EXE either. And I'm not sure I can do anything about building libra...
by thor36
Sun Feb 09, 2014 2:01 pm
Forum: Compiler / Linking / IDE Related
Topic: wxmsw30u_gcc48.dll missing from your computer
Replies: 8
Views: 6502

Re: wxmsw30u_gcc48.dll missing from your computer

Unfortunately, running EXE from inside IDE was the first thing I tried, and it threw the error that I described in first post :?

And if I find the DLL, or reinstall wxWidgets or anything... what should I do with it, where to place it ?
by thor36
Sun Feb 09, 2014 1:32 pm
Forum: Compiler / Linking / IDE Related
Topic: wxmsw30u_gcc48.dll missing from your computer
Replies: 8
Views: 6502

Re: wxmsw30u_gcc48.dll missing from your computer

Oh, I probably should've added that I created projects using project wizard and choose wxWidgets 3.0 project. DLL is not in the folder where EXE is ( debug ), and I'm pretty sure it wasn't before either. I also ran a search through all disk drives and it didn't find the file - which I expected to be...
by thor36
Sun Feb 09, 2014 12:13 pm
Forum: Compiler / Linking / IDE Related
Topic: wxmsw30u_gcc48.dll missing from your computer
Replies: 8
Views: 6502

wxmsw30u_gcc48.dll missing from your computer

Hi. Yesterday I have checked a few simple wxWidgets 3.0 programs found in websites with tutorials. There were problems with compiling them at first, but eventually they worked. Today, when I try to run any of it, I get a System error : " The program can't start because wxmsw30u_gcc48.dll is mis...
by thor36
Sat Feb 08, 2014 9:37 pm
Forum: Compiler / Linking / IDE Related
Topic: Can't get example from tutorial to work in CodeBlocks
Replies: 10
Views: 3367

Re: Can't get example from tutorial to work in CodeBlocks

Wonderful. Thank you very much for your help :lol:

Regards, T
by thor36
Sat Feb 08, 2014 9:25 pm
Forum: Compiler / Linking / IDE Related
Topic: Can't get example from tutorial to work in CodeBlocks
Replies: 10
Views: 3367

Re: Can't get example from tutorial to work in CodeBlocks

I see. Well to put it together simply... I would like to create an application that has a GUI ( with wxWidgets ). Also in that application, I would like to present graphics made in OpenGL ( both, in a canvas inside wx frame, and in a separate window ). I would also use Open CV algorithms for image p...
by thor36
Sat Feb 08, 2014 2:31 pm
Forum: Compiler / Linking / IDE Related
Topic: Can't get example from tutorial to work in CodeBlocks
Replies: 10
Views: 3367

Re: Can't get example from tutorial to work in CodeBlocks

I have already tried a simple program after creating a wxWidgets project and it worked fine. The issue is just that I would probably use a few other libraries in my app too. And I know how to do that in a normal console application in a main.cpp, but I don't know how and if wxWidgets project support...
by thor36
Sat Feb 08, 2014 1:29 pm
Forum: Compiler / Linking / IDE Related
Topic: Can't get example from tutorial to work in CodeBlocks
Replies: 10
Views: 3367

Re: Can't get example from tutorial to work in CodeBlocks

Thank you for quick reply. I have tried your version, but with no success, this time I get 50 errors :D And actually, the only change I see in your version comparing to mine is that the main function is removed. Or am I missing something ? I should tell again that I have created 'console application...