Search found 453 matches
- Tue Mar 05, 2013 7:25 am
- Forum: Compiler / Linking / IDE Related
- Topic: lnk2001 _TIFFInitLZW with latest svn release
- Replies: 2
- Views: 1909
lnk2001 _TIFFInitLZW with latest svn release
hi everyone, i need to use wxBitmapComboBox, ran into problems using it and found a bug report ( http://trac.wxwidgets.org/ticket/14842 ) saying it was broken in the latest release 2.9.4.. there is a bug patch but the line numbers do not match so i thought i should get the latest svn because the pat...
- Mon Mar 04, 2013 7:08 pm
- Forum: C++ Development
- Topic: error MSB6006: "cmd.exe" exited with code 1
- Replies: 3
- Views: 4683
Re: error MSB6006: "cmd.exe" exited with code 1
i have the same problem, could you solve it?
- Wed Feb 27, 2013 9:29 am
- Forum: Component Writing
- Topic: custom wxNotebook Tabs
- Replies: 0
- Views: 4885
custom wxNotebook Tabs
hi everyone, i want to have custom tabs for my notebook that look like this: customNotebook.gif - coloured tabs on the left side, maybe a short text inside - two different tab sizes when unselected - spaces between groups of tabs i found a post in this forum that adviced against doing a custom paint...
- Tue Jan 22, 2013 7:26 am
- Forum: C++ Development
- Topic: wxCondition error
- Replies: 2
- Views: 1161
Re: wxCondition error
thanx manolo!
i works fine when i unlock the mutex in the TalkerThread.

i works fine when i unlock the mutex in the TalkerThread.

- Mon Jan 21, 2013 8:12 pm
- Forum: C++ Development
- Topic: wxCondition error
- Replies: 2
- Views: 1161
wxCondition error
hi! my application is handling the communication with a hardware device. since the app should not wait for answers from the hardware, i use threads for talking and listening to the device. to make things more complicated, i have to make sure to only talk to the device when there is no answer pending...
- Mon Jan 07, 2013 1:06 pm
- Forum: wxDev-C++
- Topic: wxDatePickerCtrl
- Replies: 7
- Views: 5287
Re: wxDatePickerCtrl
i have a similar problem. i built wxwidgets 2.9.4 with the default options in windows. in the file C:\wxWidgets-2.9.4_vc11\include\wx\msw\setup.h it sais #define wxUSE_DATEPICKCTRL 1 // wxDatePickerCtrl but still i cannot use wxDatePickerCtrl (unresolved external symbol): error LNK2019: Verweis auf ...
- Fri Mar 30, 2012 2:03 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxctb linker error
- Replies: 4
- Views: 2601
Re: wxctb linker error
perfect, thanx!
- Fri Mar 30, 2012 1:24 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxctb linker error
- Replies: 4
- Views: 2601
wxctb linker error
hi, i use wxWidgets 2.9.1 und am trying to use wxCTB 0.9. i get these "unresolved external symbol" errors: 1>wxctbd-0.9.lib(wxctb_lib_timer.obj) : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol "[email protected]" in Funktion ""public: int __thiscall timer::stop(void)" ([email protected]...
- Tue Mar 27, 2012 4:08 pm
- Forum: C++ Development
- Topic: wxDynamicLibrary::Load() does not work anymore
- Replies: 6
- Views: 2229
Re: wxDynamicLibrary::Load() does not work anymore
ok, i will disable the part of my app that needs this dll in 64bit environments.
thanx!
thanx!
- Tue Mar 27, 2012 2:48 pm
- Forum: C++ Development
- Topic: wxDynamicLibrary::Load() does not work anymore
- Replies: 6
- Views: 2229
Re: wxDynamicLibrary::Load() does not work anymore
ok, i just could load "wxmsw291ud_adv_vc_custom.dll" with the code above, so what could be wrong with the dlls that i cannot load? edit: when i open my dll with dependecy walker, there are three more dll errors than with wxmsw291ud_adv_vc_custom.dll: kbas6.dll, khdw6.dll and kioa6.dll are missing. i...
- Tue Mar 27, 2012 2:34 pm
- Forum: C++ Development
- Topic: wxDynamicLibrary::Load() does not work anymore
- Replies: 6
- Views: 2229
Re: wxDynamicLibrary::Load() does not work anymore
doublemax, thanx for your idea. the path is correct. when i change my code to #include "mnml_app.h" #include <wx/dynlib.h> #include <wx/stdpaths.h> #include <wx/file.h> bool App::OnInit() { wxString path = wxStandardPaths::Get().GetExecutablePath().BeforeLast('\\') + _("\\myDll.dll"); if(wxFile::Exi...
- Tue Mar 27, 2012 1:42 pm
- Forum: C++ Development
- Topic: wxDynamicLibrary::Load() does not work anymore
- Replies: 6
- Views: 2229
wxDynamicLibrary::Load() does not work anymore
hi, in my application i had some code that used to work fine. some months ago i deactivated it with a comment and now that i want to ude it again it does not work anymore. in the meantime i switched from wxWidgets 2.8.12 to 2.9.1 and from xp to win7, but i already tested in the old configuration and...
- Tue Feb 07, 2012 4:00 pm
- Forum: Compiler / Linking / IDE Related
- Topic: load wxWidgets symbols
- Replies: 6
- Views: 1791
Re: load wxWidgets symbols
thanx doublemax! while i was trying to compile a static linking version of wxwidgets, i came across a hint in http://wiki.wxwidgets.org/Microsoft_Visual_C%2B%2B_Guide#Version_information saying that wxWidgtes 2.8 does not yet support vs2010. i did not mention before that i was using wxwidgets 2.8.11...
- Tue Feb 07, 2012 11:03 am
- Forum: Compiler / Linking / IDE Related
- Topic: load wxWidgets symbols
- Replies: 6
- Views: 1791
Re: load wxWidgets symbols
thanx for your reply! i am not sure if i understand. in visual studio i changed c++->code generation->runtime library from \MDd to \MTd for the exe and all my dlls, but still i get the "no symbols loaded for wxmsw28ud_core_vc_custom.dll" entries in my call stack when i pause the exe. is there anythi...
- Tue Feb 07, 2012 10:07 am
- Forum: Compiler / Linking / IDE Related
- Topic: load wxWidgets symbols
- Replies: 6
- Views: 1791
Re: load wxWidgets symbols
has anyone any information about this?