Search found 123 matches

by tiwag
Tue Aug 23, 2005 11:10 am
Forum: C++ Development
Topic: Converting to Unicode wxString from unsigned char *
Replies: 7
Views: 2408

typo.. i meant do u want it ... ok THANKS for the patchfile, to which version of wxWidgets does it match ? wxMSW-2.6.1 i guess, but one can never be sure ... also i can study the changes, but a few words about the changed behaviour by using this patch would be nice ... (sorry for being persistent)
by tiwag
Tue Aug 23, 2005 8:39 am
Forum: C++ Development
Topic: Converting to Unicode wxString from unsigned char *
Replies: 7
Views: 2408

lowjoel wrote: u want vit?
sorry for mentioning that, but please can you use plain english ?
it would help a lot to understand you
thanks
by tiwag
Tue Aug 23, 2005 8:38 am
Forum: C++ Development
Topic: Converting to Unicode wxString from unsigned char *
Replies: 7
Views: 2408

lowjoel wrote:i have a patch that does transparent conversion... u want vit?
shure ! post a diff and some explanations please !
by tiwag
Tue Aug 23, 2005 6:13 am
Forum: C++ Development
Topic: Converting to Unicode wxString from unsigned char *
Replies: 7
Views: 2408

we have just done the conversion of CodeBlocks IDE to make it possible to build it with wx-unicode library. therefore we used the following macros #if wxUSE_UNICODE #define _UU(x,y) wxString((x),(y)) #define _CC(x,y) (x).mb_str((y)) #else #define _UU(x,y) (x) #define _CC(x,y) (x) #endif #define _U(x...
by tiwag
Sun Aug 21, 2005 2:35 pm
Forum: wxDev-C++
Topic: Debug Macros and wxwidgets that come with wxdevcpp
Replies: 20
Views: 4924

...Isn't there anybody out there who got dev-cpp play with debug libs?... Yes i use the wxMSW261 debug-libs regularly and didn't get the exceptions from which you have reported in this thread. But because of link-time-saving i normally use the dll version of wxMSW. i build it with the following mak...
by tiwag
Sun Aug 21, 2005 2:22 pm
Forum: wxDev-C++
Topic: wx-devcpp weekly news, 21 aug 2005
Replies: 17
Views: 5313

Re: wx-devcpp weekly news, 21 aug 2005

tbreina wrote:...we've picked up Joel Low (lowjoel) as a new developer in the project! Among other things, Joel is working on adding native MS VC++ compiler support to the IDE...
congratulations !
by tiwag
Sun Aug 21, 2005 2:21 pm
Forum: wxDev-C++
Topic: wx-devcpp weekly news, 21 aug 2005
Replies: 17
Views: 5313

lowjoel wrote:... now im just wanting to let wxDev-C++ handle BOTH mingw and vc at the same time...
challenging ! interesting approach - i hope you can manage this, it would be very useful if possible .
by tiwag
Wed Aug 10, 2005 6:09 am
Forum: C++ Development
Topic: unicode build under win9X
Replies: 3
Views: 1714

canthree wrote:this means that the program did load unicows.dll, right?
at least it tried to ...

in the past i encountered some problems with nmake builds after changing some build options, when i didn't do a

Code: Select all

nmake -f makefile.vc clean
before
by tiwag
Mon Aug 08, 2005 7:42 pm
Forum: General Development
Topic: What does the "d" mean after an XRC size property
Replies: 9
Views: 3860

answer from Vadim Zeitlin arrived On Mon, 8 Aug 2005 09:18:37 +0000 (UTC), vadim@wxwindows.org (Vadim Zeitlin) wrote: >On Mon, 8 Aug 2005 08:53:41 +0000 (UTC) tiwag@... wrote: > >> What does the "d" mean after an XRC size property ? > > "Dialog units" I believe. > > Regards, >VZ ...
by tiwag
Mon Aug 08, 2005 8:54 am
Forum: General Development
Topic: What does the "d" mean after an XRC size property
Replies: 9
Views: 3860

i_ve posted this issue in the wx-users list,
maybe we get a better answer from there
by tiwag
Mon Aug 08, 2005 7:25 am
Forum: General Development
Topic: What does the "d" mean after an XRC size property
Replies: 9
Views: 3860

but also i found it in the docs WXDIR\docs\tech\tn0014.txt:185 Position -------- Specifies (window's) position in 2D space. Syntax is <integer>,<integer>[d] where <integer> is valid value of Integer type. Size ---- Syntax is same as Position's syntax, but the values are interpreted as window size (w...
by tiwag
Mon Aug 08, 2005 7:10 am
Forum: General Development
Topic: What does the "d" mean after an XRC size property
Replies: 9
Views: 3860

i've searched a lot of real used xrc files on my harddrive and i never could see a "d" appended search: <size> configure_tools.xrc(33): <size>0,16</size> edit_tool.xrc(40): <size>24,-1</size> edit_tool.xrc(71): <size>24,-1</size> edit_tool.xrc(78): <size>0,0</size> editor_configuration.xrc...
by tiwag
Fri Aug 05, 2005 12:04 pm
Forum: Compiler / Linking / IDE Related
Topic: Where is wxSystemOptions?
Replies: 7
Views: 2385

Jorg wrote:Those could be references. Isn't it smarter to see in which file it is declared, and check out the projects to see where the file is placed in?
sure , but for me it does the job.
by tiwag
Fri Aug 05, 2005 11:26 am
Forum: Compiler / Linking / IDE Related
Topic: Where is wxSystemOptions?
Replies: 7
Views: 2385

Ben wrote:
upCASE wrote:Hi!
I suppose libwxmsw26d_adv would be it.
Nope doesn't work.
a short grep search found "wxSystemOptions" in the following libs

libwxbase26.a
libwxbase26d.a
libwxmsw26_core.a
libwxmsw26d_core.a

8)
by tiwag
Fri Aug 05, 2005 11:12 am
Forum: Compiler / Linking / IDE Related
Topic: Where is wxSystemOptions?
Replies: 7
Views: 2385

Re: Where is wxSystemOptions?

...When using the monolitic build it works but I don't want to have to wait 10 for eavery app to link :? . because of the boring long link time i switched over to the monolithic_debug_dll version during development, it links as quick and you don't have to bother with all the libnames and this stuff...