Search found 21 matches

by joao.sauer
Thu Jul 16, 2009 10:05 pm
Forum: C++ Development
Topic: Problems in use accents
Replies: 1
Views: 769

Problems in use accents

Hi Guys, Sorry in send this message, but I tried all the possible solutions that I found in the forum and in the web, but I still have problems. My wxwidgets was build by myself using UNICODE in windows, using the mingw. I'm using this: ButtonExit = new wxButton(WxPanel1, ID_BUTTONEXIT, wxT("Bo...
by joao.sauer
Tue Jul 07, 2009 8:36 pm
Forum: C++ Development
Topic: OpenGl example + mouse event.
Replies: 1
Views: 859

OpenGl example + mouse event.

Hi people! I'm here again, asking for your help. :) I'm trying to understand the openGl example, the penguin one. The program is running very well, and is doing what is proposed to do. But, I have a question about the onmouseevent. In the penguin.cpp file, we have the line 136: EVT_MOUSE_EVENTS(Test...
by joao.sauer
Mon Jun 22, 2009 9:38 am
Forum: wxCode
Topic: DataBaseLayer is the future of wxODBC?
Replies: 5
Views: 4924

Hi Again, Maybe I was not so good in explain my question. Sorry about that. What I want to make is a prog that could accept as much DB that I can do. Because the client will say which DB it will be necessary to use. And one client could be different from the other client. I was expecting just the mo...
by joao.sauer
Thu Jun 18, 2009 10:12 am
Forum: wxCode
Topic: DataBaseLayer is the future of wxODBC?
Replies: 5
Views: 4924

DataBaseLayer is the future of wxODBC?

Hi people, I discovered that wxWidgets is dropping the wxODBC. I read the reasons here in the forum about this decision and I really think that it was a good decision, to keep concentrate only in the widgets. But, my question now is what I can use in instead? In my project, the user will define whic...
by joao.sauer
Wed Jan 14, 2009 9:09 am
Forum: wxDev-C++
Topic: What is the command to build wxwidgets to wxDev-cpp?
Replies: 2
Views: 771

What is the command to build wxwidgets to wxDev-cpp?

Hi everybody, I was using a the wxdev-cpp in my project and was working fine. But, once that I want to run the same code in Linux and windows, I made a port to use direct mingw without wxdev-cpp. So, what I need now, is the command line used to build the wxwidgets exact the way that was made in the ...
by joao.sauer
Tue Jan 13, 2009 9:11 am
Forum: Compiler / Linking / IDE Related
Topic: Is working using wxDev-CPP, but not with mingw+wxwidgets
Replies: 7
Views: 1992

Hi guys, After almost one week working in this issue, I still having the same problem! :( My code still give me errors that I have no idea what is the reason for this. :( I just would like to know how to generate the same build of wxDev-Cpp, but using unicode. My last try was using MONOLITH=0. But I...
by joao.sauer
Mon Jan 12, 2009 1:52 pm
Forum: Compiler / Linking / IDE Related
Topic: Is working using wxDev-CPP, but not with mingw+wxwidgets
Replies: 7
Views: 1992

Is working using wxDev-CPP, but not with mingw+wxwidgets

Hi guys, I have something very weird here. I was using WxDevcpp to build my project and everything works fine. Than, I tried to "clean" the code and started use only command lines, using the mingw32-make of the WxDev-cpp. After some nights without sleep, finally the code was building fine!...
by joao.sauer
Mon Dec 15, 2008 8:02 am
Forum: wxCode
Topic: wxVidCap + Mingw?
Replies: 0
Views: 1113

wxVidCap + Mingw?

Hi people! I'm trying to building this code, using the makefile.gcc that came with the project, but I'm getting errors! C:\Temp\videocap\wxCode\components\wxvidcap\build>mingw32-make -f makefile.gcc all if not exist ..\lib\gcc_lib mkdir ..\lib\gcc_lib g++ -c -o gccmswd\vidcap_lib_vcap_vfw.o -DHAVE_W...
by joao.sauer
Sun Dec 14, 2008 3:29 pm
Forum: C++ Development
Topic: Mingw and directShow
Replies: 2
Views: 1483

Thanks! Now, the Directx SDK is Windows SDK! So, probably, the site that you passed will help me in build the samples that came with the SDK. Actually, I just want to build an example that uses the directShow. We have any very, very, very simple example that uses wxwidgets and directx? I now that we...
by joao.sauer
Sat Dec 13, 2008 10:13 pm
Forum: C++ Development
Topic: Mingw and directShow
Replies: 2
Views: 1483

Mingw and directShow

Hi guys, Again I need your help! :) Now, I want to connect in my program a very, very, very simple way to show the images from the webcam and took a picture when a button is pressed. I know that in linux we have the wxCam that do this very well. At least in my case. But for windows, the only good ex...
by joao.sauer
Thu Dec 11, 2008 4:37 pm
Forum: C++ Development
Topic: What is the correct way to work with images?
Replies: 3
Views: 1365

Hi DoubleMax, Explain a little bit more my case: I'm using images with 140Kb of size. I believe that is small images. But When I ask just to make a change from color to black and white, for example, it's taking about 30-40 sec. And I need to made at least more 8 manipulations in the image. So, the t...
by joao.sauer
Thu Dec 11, 2008 3:45 pm
Forum: C++ Development
Topic: What is the correct way to work with images?
Replies: 3
Views: 1365

What is the correct way to work with images?

Hi guys, Sorry for this question, but I'm trying to find in the entire forum about this and I found so many questions about images and nothing like my question. I know that probably this was discussed here, but I didn't find. If you found something about this, please let me know. I just want to know...
by joao.sauer
Tue Dec 09, 2008 4:06 pm
Forum: C++ Development
Topic: How to split an code
Replies: 10
Views: 2243

I have one more question about this code. How can I create an code that code be more usable? For example, I creating now a constructor that receives an wxNotebook and Add a new tab. CRegister::CRegister(wxNotebook *parent) { pParent = parent; //pParent is a wxNotebook pParent->AddPage(this, wxT(&quo...
by joao.sauer
Tue Dec 09, 2008 1:23 pm
Forum: C++ Development
Topic: How to split an code
Replies: 10
Views: 2243

I just made oe more change and worked very well!!! Thanks a lot for your help! This is my change in the constructor of the new class: CRegister::CRegister(wxNotebook *parent):\ wxPanel(parent, ID_NCADASTRO, wxPoint(4,29), wxSize(993,637)) { As you can see, it was initialized the WxPanel together wit...
by joao.sauer
Tue Dec 09, 2008 11:54 am
Forum: C++ Development
Topic: How to split an code
Replies: 10
Views: 2243

Yes! I agree with you! But I received this errors in the program(Not in the build) 11:51:42: Can't create window of class wxWindowClassNR (error 1406: cannot create a top-level child window.) 11:51:42: Can't create window of class wxWindowClass (error 1406: cannot create a top-level child window.) 1...