Search found 88 matches

by max.t
Tue Jun 01, 2010 7:06 pm
Forum: Compiler / Linking / IDE Related
Topic: wxwidgets 2.9.0: wx.chm file
Replies: 12
Views: 3516

max.t wrote:I have this trouble with the 2.8.11 wx.chm file:
- nothing is found in the search tab
- index tab just contains one member of a class
Problem can be solved by extracting the files from the wx.htb helpfile and generating a new wx.chm from wx.hhp with HtmlHelpWorkshop.
by max.t
Sat May 29, 2010 3:30 pm
Forum: Compiler / Linking / IDE Related
Topic: wxwidgets 2.9.0: wx.chm file
Replies: 12
Views: 3516

I have this trouble with the 2.8.11 wx.chm file:
- nothing is found in the search tab
- index tab just contains one member of a class

Is there also a patched chm-file for 2.8.11?
by max.t
Tue Sep 16, 2008 10:57 am
Forum: C++ Development
Topic: wxFileDialog and multi files selecting
Replies: 2
Views: 943

You also can select dirs in the dialog but to my knowledge only the selected files are taken by wxFileDialog when the selection is finished with OK (I've tested with wxFileDialog::GetFilenames()).
by max.t
Tue Aug 12, 2008 7:01 am
Forum: C++ Development
Topic: Strange problem with wxDateTime.SetMonth()
Replies: 4
Views: 1235

I am not sure whether I did understand you in a right way. You are applying SetMonth() several times and the first call is ignored?
by max.t
Mon May 26, 2008 8:15 pm
Forum: Compiler / Linking / IDE Related
Topic: problem configuring CodeBlocks
Replies: 4
Views: 1386

Auria wrote:Actually mostly forget about max.t's answer (the second part at least), on Linux it is much different from on Windows
Uh oh, I really should had a notion of this by exactly reading wxBoy's first post ...
by max.t
Mon May 26, 2008 7:14 am
Forum: Compiler / Linking / IDE Related
Topic: problem configuring CodeBlocks
Replies: 4
Views: 1386

After having set the global variable wx to your wxWidgets directory you have to add the following search paths in the "build options": Compiler: - $(#wx)/contrib/include - $(#wx)/include Linker: - $(#wx)/lib/gcc_lib (gcc_dll depending on your build) The paths above are for Windows systems ...
by max.t
Sun May 25, 2008 4:17 pm
Forum: wxCode
Topic: wxImage::LoadFile with scaling for jpeg images?
Replies: 3
Views: 1885

There is a ticket at http://trac.wxwidgets.org/ticket/8390 concerning scaling while decompressing jpg images.
by max.t
Sun May 25, 2008 6:39 am
Forum: C++ Development
Topic: Folder Parser
Replies: 3
Views: 1625

Code: Select all

wxDir::GetAllFiles
should do what you want. Please click on the link for help on this class.
by max.t
Wed May 21, 2008 6:22 pm
Forum: C++ Development
Topic: Disable resizing of a frame after frame creation
Replies: 3
Views: 4031

I am using the following code to set the child frame to the desired size and then set the min size of the parent frame to exactly fit this desired child frame size. SetClientSize(MIN_WIDTH,MIN_HEIGHT); SetMinSize(GetSize()); I guess you can use something like SetMinSize(GetSize()); SetMaxSize(GetSiz...
by max.t
Wed May 21, 2008 7:21 am
Forum: C++ Development
Topic: wxFileSelector segfault in debug
Replies: 2
Views: 922

I had the same problem and started a thread some time ago.

http://forums.wxwidgets.org/viewtopic.php?t=14542

I marked it as "solved" (without a real solution) because it was most likely not a problem of wxWidgets.
by max.t
Sun May 18, 2008 3:27 pm
Forum: Compiler / Linking / IDE Related
Topic: MinGW Vista native Look&Feel
Replies: 2
Views: 3744

Try to put hte line

Code: Select all

#include "wx/msw/wx.rc"
into the project's rc-file. This enables the native look and feel for XP and most likely for Vista, too (I can't check for Vista).
by max.t
Sun May 18, 2008 7:57 am
Forum: Compiler / Linking / IDE Related
Topic: MinGW/Code::Blocks undefined references
Replies: 3
Views: 1639

I can reproduce some of your errors if I don't link against some of the mingw-libs. For example I also get C:\Programme\prog\wxMSW\lib\gcc_lib/libwxmsw28d.a(monolib_filename.o): In function `ZN10wxFileName17GetShortcutTargetERK8wxStringRS0_PS0_': C:/Programme/prog/wxMSW/build/msw/../../src/common/fi...
by max.t
Fri May 16, 2008 9:18 pm
Forum: Compiler / Linking / IDE Related
Topic: MinGW/Code::Blocks undefined references
Replies: 3
Views: 1639

Do you also get errors if you create a new wxWidget project by means of the wizard in Code::Blocks? If not, compare the options, libs and search paths given in this new project with the project you want to port.
by max.t
Fri May 16, 2008 6:15 pm
Forum: C++ Development
Topic: translated error messages
Replies: 1
Views: 692

Without using a

Code: Select all

wxLocale
in your program you should get native dialogs etc. and messages from the os in the language of your os and all messages from wxWidgets in English.
by max.t
Fri May 16, 2008 6:55 am
Forum: wxDev-C++
Topic: Problem when compile template class whith Mingw
Replies: 1
Views: 728

What error messages are shown by MinGW?