Search found 80 matches

by robal
Tue Dec 09, 2008 1:15 pm
Forum: C++ Development
Topic: wxProcess, wxExecute and GUI
Replies: 1
Views: 740

wxProcess, wxExecute and GUI

Hi I have small problem with running procesess. I have one simple GUI app, e.g. simple window, and second GUI app. I'm executing one app from another one i trying to send messages between them using wxOutputStream and wxInputStream. But, after calling Redirect() (to call then GetOutputStream() etc.)...
by robal
Tue Dec 02, 2008 7:49 pm
Forum: C++ Development
Topic: dll wx nightmare...
Replies: 2
Views: 988

Main problem was, that both, wx and my dll was compiled with the same runtime version. There was missing define WXUSINGDLL - after adding it to project settings linking was possible. However, still is the same problem with the mouse - when mouse entering the window application crashes - and dynamic ...
by robal
Tue Dec 02, 2008 4:50 pm
Forum: C++ Development
Topic: dll wx nightmare...
Replies: 2
Views: 988

dll wx nightmare...

Hi I'm fighting with wx library compiled as dynamic dll's. I'm trying to create application, using dll's as plugins, which plugins can create panels inside some other window. I cannot link my dll with export libs from wx (there is plenty errors similar to situation when wx is compiled with different...
by robal
Tue Dec 02, 2008 8:16 am
Forum: Compiler / Linking / IDE Related
Topic: EVC++ 4.0 vs wxWidgets
Replies: 2
Views: 703

But you talking about Proffesional versions of VC? I'm working with VC2005 and 2008, but both of them are Express - this is commercial product and i should have appropriate licenses. If it is possible in any way to use Express version - this is not problem for me, even better. Some additional observ...
by robal
Sat Nov 29, 2008 3:16 pm
Forum: Compiler / Linking / IDE Related
Topic: EVC++ 4.0 vs wxWidgets
Replies: 2
Views: 703

EVC++ 4.0 vs wxWidgets

Hi I'm trying to compile wx library using EVC++ 4.0 on Vista. There is common problem running EVC on Vista (as it is not continued by M$), however i'm able to run it on Vista and it works fine (in the XP compatibility mode). I'm able also load wx workspace for CE, but compilation is not fine. It thr...
by robal
Tue Nov 25, 2008 10:22 am
Forum: C++ Development
Topic: alt+tab, list of programs and hide wxFrame
Replies: 2
Views: 780

And this is strange for me, because i don't have this effect - i'm opening more frames with NO_TASKBAR flag and they doesn't appear on the task bar, but they exists in the list of opened programs.
by robal
Tue Nov 25, 2008 9:11 am
Forum: C++ Development
Topic: alt+tab, list of programs and hide wxFrame
Replies: 2
Views: 780

alt+tab, list of programs and hide wxFrame

Hi

I have problem with wxFrame - i'd like to hide window in the list of opened programs (Alt+ Tab in Windows), i don't know if this is the same or similar on the Mac? Is there any style or other way to have window opened and not visible in this list?
by robal
Sun Nov 16, 2008 12:53 pm
Forum: C++ Development
Topic: wxList and forward class declaration problem?
Replies: 2
Views: 789

Problem solved - there was no problem with forward declaration but wrong cast type (objects used on the lists have two base clases). I used first reinterpret_cast<>, but it had to be dynamic_cast<> - thats all.
by robal
Fri Nov 14, 2008 1:34 pm
Forum: C++ Development
Topic: wxList and forward class declaration problem?
Replies: 2
Views: 789

wxList and forward class declaration problem?

Hi - here is the situation: class Class2; WX_DECLARE_LIST( Class1, lstClass1 ); WX_DECLARE_LIST( Class2, lstClass2 ); class Class2 { ... lstClass1 lst1; lstClass2 lst2; }; // as usual ... #include <wx/listimpl.cpp> WX_DEFINE_LIST( lstClass1 ); WX_DEFINE_LIST( lstClass2 ); When i'm trying to append o...
by robal
Fri Nov 07, 2008 2:05 pm
Forum: C++ Development
Topic: frame + png + controls
Replies: 1
Views: 531

frame + png + controls

Hi I'm developing skinned application, using my own skin engine, but i have small problem - i'm using png files to draw windows and controls. These png files have an alpha channels, which allows controls to be transparent. I have such situation - frame has applied png bitmap (with alpha) to backgrou...
by robal
Tue Oct 28, 2008 9:47 pm
Forum: C++ Development
Topic: xrc loaded resource id's
Replies: 0
Views: 491

xrc loaded resource id's

Hi I'm now facing problem with the wxFileHistory and associated menu. Everything regarding history and menu is working fine, but there is a problem with handling events from recent files menu. I'm loading menu from resources, like everything else in app. Now, i need to write handler for recent files...
by robal
Mon Aug 04, 2008 9:16 am
Forum: C++ Development
Topic: Help system vs controls...
Replies: 1
Views: 561

Help system vs controls...

Hi I have small problem with my aplication - i want add help system. There is a main frame with tabs and controls on each tab. I want to press F1 (some kind of standard) and help should open. But here problems are starting, because i added keyborad handler in mainframe, which doesn't work at all (al...
by robal
Thu Jun 05, 2008 9:28 pm
Forum: C++ Development
Topic: Embeded resources problem...
Replies: 2
Views: 844

Yep, you are rigth, instead "some_path to xrc" there is particular pth to file loaded from embeded resources, e.g. "XRC_resource/res_trinfo2_dlg_options_page_general.cpp$d__projects_trinfo2_trinfo2_resources_resourcesu_res_trinfo2_dlg_options_page_general.xrc" I have no idea, why...
by robal
Thu Jun 05, 2008 7:04 am
Forum: C++ Development
Topic: Embeded resources problem...
Replies: 2
Views: 844

Embeded resources problem...

Hi I made embeded resources in my program. I made few xrc files, then used wxrc.exe tool to create *.cpp files. I created static lib with resources (set of functions generated by wxrc tool) in *.cpp files. I have linked to main progam and everything seems to be working for the first time (e.g. dialo...
by robal
Thu Dec 20, 2007 10:09 am
Forum: C++ Development
Topic: Mysterious problem with xrc resources
Replies: 2
Views: 751

Have you tried removing some dialog controls from the XRC and start with a near empty trimmed example? As for the file not being found, are you sure your current working directory is always the same? This could be some approach to that problem, however my dialogs are a little bit complicated and co...