Search found 13 matches

by nmontec
Sat Oct 20, 2012 8:43 am
Forum: Compiler / Linking / IDE Related
Topic: Problem compiling wxMSW 2.8.12
Replies: 7
Views: 4420

Re: Problem compiling wxMSW 2.8.12

I found the same issue trying also the previous stable release and 2.9.4as well. It seems something is missing there but I don't understand what.
Does anyone have a clue about it?
by nmontec
Fri Oct 19, 2012 4:10 pm
Forum: Compiler / Linking / IDE Related
Topic: Problem compiling wxMSW 2.8.12
Replies: 7
Views: 4420

Problem compiling wxMSW 2.8.12

Hello Everyone, I am using cygwin with gcc 3.4.4 and would like to compile wxMSW 2.8.12. I am following the explanations here: http://wiki.wxwidgets.org/Cygwin After launching make, it does compile a lot of stuff and eventually it hangs on this: $ make /home/nmontecc/wxMSW-2.8.12/build-debug/bk-deps...
by nmontec
Tue Aug 24, 2010 2:36 pm
Forum: Platform Related Issues
Topic: Cygwin 1.7.1 fails to compile wxWidgets 2.8.10 and 2.9.0
Replies: 4
Views: 3009

I am having the same issue, does anyone know how to solve this?

thanks a lot
Nicola
by nmontec
Wed Feb 18, 2009 3:13 pm
Forum: C++ Development
Topic: gtk-critical issue! Help!
Replies: 1
Views: 985

gtk-critical issue! Help!

Hello All, I'm getting this problem on Ubuntu Linux with the code: wxFileDialog *chooser=new wxFileDialog(this,wxT("File Selection"),LastDir,wxT(""),wxT("*.*"),wxFD_MULTIPLE|wxTE_READONLY,wxDefaultPosition,wxDefaultSize,wxT("FileSelector")); when then I execut...
by nmontec
Fri Dec 05, 2008 1:20 pm
Forum: C++ Development
Topic: DOS window opening when running my application
Replies: 4
Views: 1352

with -mwindows it works, that's great!!
Thanks a lot for your help!
by nmontec
Fri Dec 05, 2008 1:02 pm
Forum: C++ Development
Topic: DOS window opening when running my application
Replies: 4
Views: 1352

I'm using gcc on windows by cygwin. I'll check that option..
by nmontec
Thu Dec 04, 2008 1:14 pm
Forum: C++ Development
Topic: DOS window opening when running my application
Replies: 4
Views: 1352

DOS window opening when running my application

Dear All,

I am developing and image processing software, but when I run it a dos window pops up before opening my main program wxwindow.
Is there a way to avoid that?

thanks a lot
Nicola
by nmontec
Sat Nov 08, 2008 12:42 am
Forum: General Development
Topic: problem with displaying Image from raw data
Replies: 4
Views: 1936

issue solved, despite i don't know how, the indexes seemed working exactly as before, but final result is different.
by nmontec
Fri Nov 07, 2008 11:05 pm
Forum: General Development
Topic: problem with displaying Image from raw data
Replies: 4
Views: 1936

ImgDspRGB8bit is allocated as a malloc(Width*3*Height)
Where of course Width and Height are the width and height of the real image.
What i get is really funny....
The width of the image is tripled and the height is 1/3 of what it should be!!
by nmontec
Fri Nov 07, 2008 10:16 pm
Forum: General Development
Topic: problem with displaying Image from raw data
Replies: 4
Views: 1936

problem with displaying Image from raw data

Hello Everyone! I'm trying to display a bitmap from raw data in RGBRGB format, but data is not displayed: this version is something like: wxScrolledWindow *finestra unsigned char *ImgDspRGB8bit; ..... .... wxBitmap imgbmp(ImgDspRGB8bit,wxBITMAP_TYPE_BMP,Width,Height,24); sb = new wxStaticBitmap(fine...
by nmontec
Tue Jul 22, 2008 4:25 pm
Forum: Compiler / Linking / IDE Related
Topic: HelloWorld does not do anything
Replies: 9
Views: 2141

Thanks Eran for the reply.
After all, I think I'll stick with the DLL in my local directory as in this way I may control which dll I should distribute together with my software and having everything self-consistent.
by nmontec
Tue Jul 22, 2008 10:17 am
Forum: Compiler / Linking / IDE Related
Topic: HelloWorld does not do anything
Replies: 9
Views: 2141

Problem solved!

Basically the program, for some unknown reason (perhaps some of you can explain that) it does not find the following libraries:

cygwxbase28_gcc_custom-0.dll
cygwxmsw28_core_gcc_custom-0.dll

If I copy them into the same folder as the executable is, it works!

Nicola
by nmontec
Tue Jul 22, 2008 8:33 am
Forum: Compiler / Linking / IDE Related
Topic: HelloWorld does not do anything
Replies: 9
Views: 2141

I compiled with this statement: g++ -g3 -Wall main.cpp `wx-config --libs` `wx-config --cxxflags` -o prova then I run gdb and this is the output: $ gdb prova.exe GNU gdb 6.8.0.20080328-cvs (cygwin-special) Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <h...