Search found 53 matches

by jhurtado
Sat Oct 20, 2007 10:34 am
Forum: Compiler / Linking / IDE Related
Topic: Messy Window...
Replies: 1
Views: 861

Re: Messy Window...

tobb wrote: 1. I don't know why there is so much space under wxStaticText "Aufnahmedatum"?
Disable the "stretch" option of bSizer3(from toolbar, ALT+S or from object properties with proportion = 0)
tobb wrote: 2. I don't know why there is so much space right beside wxStaticText "Kostentr
by jhurtado
Sun Sep 16, 2007 10:24 am
Forum: Compiler / Linking / IDE Related
Topic: WxFormbuilder and overwritting of files
Replies: 7
Views: 10470

I've just completed a new article on our wiki to explain just exactly what those reasons are. Please give it a read, I hope it helps. Why Can't I Edit the Generated Code? Really good article. Also, I suggest you take a look to the wxFB video tutorial. It's a complete example which shows how to use ...
by jhurtado
Sun Sep 02, 2007 7:23 am
Forum: Announcements and Discoveries
Topic: wxFormBuilder 3.0 Video Tutorial
Replies: 0
Views: 1221

wxFormBuilder 3.0 Video Tutorial

Hi all,

wxFormBuilder 3.0 will be released in a few days, for everybody interested in how this GUI designer works we released a video tutorial which show the development of an entire application.

http://wiki.wxformbuilder.org/uploads/M ... torial.avi
by jhurtado
Sun Feb 11, 2007 7:41 am
Forum: C++ Development
Topic: I am not getting it
Replies: 7
Views: 2000

Kip, I tested it and it worked with your XRC file and with the C++ code.

Did you create a new size event handler?

In that case, call event.Skip() at the end of the handler.
by jhurtado
Sat Feb 10, 2007 10:53 am
Forum: C++ Development
Topic: I am not getting it
Replies: 7
Views: 2000

- Remove the wxSHAPED flag from sizeritem options in m_textCtrl1 and GeneralSizer. - Disable the stretch factor (ALT+S) of the bSizer10 and bSizer11 sizers. - Enable the stretch factor in m_textCtrl1. If you want the labels 'videos', 'size' and 'notes' aligned I suggest you to use a wxFlexGridSizer ...
by jhurtado
Mon Jan 22, 2007 3:47 pm
Forum: C++ Development
Topic: noob - wxChoice EVT_CHOICE not triggered
Replies: 5
Views: 1876

I have tested the choice event and it worked fine. I see two wxChoice controls, check if their IDs are right. wxFormBuilder now can create event handlers (since 3.0 beta 2), so you don't need to create a new event table in the derived class, only override the virtual method. Anyway, I tested both ap...
by jhurtado
Mon Nov 27, 2006 9:57 pm
Forum: Compiler / Linking / IDE Related
Topic: what's your favorite RAD for wxWidgets?
Replies: 10
Views: 4400

Most of the design I wrote myself, cause no Gui-Builder uses wxAUI which i use in my apps. You can use both. wxAUI manages individual window panes. So, if you design every pane (wxPanel *) separately you can integrate all of them in a simple wxFrame. The problem is if you want to create all subwind...
by jhurtado
Fri Jun 30, 2006 6:47 pm
Forum: C++ Development
Topic: wxGrid component for databaselayer
Replies: 0
Views: 628

wxGrid component for databaselayer

I'm looking for a kind of wxGrid (like wxOTLGrid) component for using with databaselayer, that lets me select/update records of a table or SQL query.

Thanks in advance.
by jhurtado
Fri Jun 09, 2006 2:35 pm
Forum: Compiler / Linking / IDE Related
Topic: wxDialog Error
Replies: 11
Views: 2897

C:\wxWidgets-2.6.3\build\msw>c:\progra~1\codeblocks\bin\mingw32-make -f C:\wxWidgets-2.6.3\build\msw\makefile.gcc BUILD=release SHARED=1 MONOLITHIC=1 You shouldn't need to type the full path, you should have "codeblocks\bin" directory in your %PATH% environment var (be sure of that) of no...
by jhurtado
Wed Jun 07, 2006 3:31 pm
Forum: Compiler / Linking / IDE Related
Topic: wxDialog Error
Replies: 11
Views: 2897

I'm using wxWidgets 2.6.3 I got the build here ftp://biolpc22.york.ac.uk/pub/2.6.3/wxMSW-2.6.3-Setup-1.exe This is a source package, you have to build it. Just open a shell and type: C:\wxWidgets-2.6.3\build\make -f Makefile.gcc BUILD=release SHARED=1 MONOLITHIC=1 (see docs) On the Linker tab in Li...
by jhurtado
Mon Jun 05, 2006 4:52 pm
Forum: Compiler / Linking / IDE Related
Topic: wxDialog Error
Replies: 11
Views: 2897

These sources compile fine! (I assume that missing #includes is a cut-paste error).

It's a problem with your library configuration. I don't know how your wxWidgets library is compiled, I use a custom build of wxWidgets (2.6.3).

Where did you get wxWidgets build?
by jhurtado
Mon Jun 05, 2006 3:16 pm
Forum: Compiler / Linking / IDE Related
Topic: wxDialog Error
Replies: 11
Views: 2897

wxFormBuilder doesn't declare event table. Can you post your code (don't post wxFB generated files)? I have tried to reproduce the error by creating a Dialog and a minimal application code. There are three files, gui.h/cpp (wxFormBuilder files) and main.cpp, check if you forgot something. The code f...
by jhurtado
Mon Jun 05, 2006 2:06 pm
Forum: Compiler / Linking / IDE Related
Topic: wxDialog Error
Replies: 11
Views: 2897

Did you declare the event table in the header and don't define it in the source file?

If you declare the event handler (with DECLARE_EVENT_TABLE) then you need to define the event table in the source (BEGIN_EVENT_TABLE...END_EVENT_TABLE). If you don't have it defined, comment the declaration.
by jhurtado
Sun Jun 04, 2006 5:27 pm
Forum: Open Discussion
Topic: Free Positioning
Replies: 11
Views: 5472

If you have fixed positions and you increase the default font size then your UI won't be displayed correctly (I had this problem with Delphi).

See wxFormBuilder tutorial, there is a small example of sizer philosophy.
by jhurtado
Mon May 01, 2006 11:39 am
Forum: Compiler / Linking / IDE Related
Topic: Building wxFormBuilder in Linux?
Replies: 12
Views: 6512

Alright... I ran the shell script that comes with propgrid, then went to the contrib dir in wxWidgets installation, ran make and make install, went to src/plugins/standard , make and make install, but then when I go 2 dirs backwards, I can't make... same errors as before... :cry: Hmm... Did I have ...