Search found 79 matches

by armink
Tue Jun 07, 2005 6:25 am
Forum: C++ Development
Topic: wxwidgets 2.6.1 and wxgenericdirctrl catastrophic
Replies: 9
Views: 2095

wxwidgets 2.6.1 and wxgenericdirctrl catastrophic

Yesterday I installed wxwidgets 2.6.1 on xp and managed to compile a application that worked 100% fine with 2.4.2. This app relies heavily on the wxgenericdirctrl. Although no compilation errors were reported, the wxgenericdirctrl doesnt work at all. Filter doesnt work, Trees cannot be expanded. I t...
by armink
Wed Apr 20, 2005 7:12 am
Forum: Compiler / Linking / IDE Related
Topic: WxDevCpp like IDE For Linux ?
Replies: 4
Views: 2056

by armink
Wed Apr 20, 2005 7:10 am
Forum: Compiler / Linking / IDE Related
Topic: CodeBlocks + linker [release]
Replies: 1
Views: 1144

Try playing with the sequence of the link libraries, it sometimes works ! Here is mine: wxmsw242 -lcomdlg32 -luser32 -lgdi32 -lole32 -lwsock32 -lcomctl32 -lctl3d32 -lgcc -lstdc++ -lshell32 -loleaut32 -ladvapi32 -luuid And recheck if all dirs for linker etc. are included ... Sorry for not more help ...
by armink
Mon Apr 04, 2005 12:54 pm
Forum: C++ Development
Topic: How to use wxLogWindow?
Replies: 7
Views: 3685

In a Frames constructor I have MyFrame::MyFrame( ...){ ... m_log_textctrl = new wxTextCtrl (this, -1, wxEmptyString, wxPoint (0, 250), wxSize (700, 100), wxTE_MULTILINE); m_logger = new wxLogTextCtrl (m_log_textctrl); m_logger->SetActiveTarget (m_logger); ... } Now u can use e.g. wxLogMessage() ever...
by armink
Sun Apr 03, 2005 11:55 am
Forum: General Development
Topic: Delete exe while application running ?
Replies: 4
Views: 1694

Nice and good Idea, I' ll try it out next week and post results.

Thanx and nice week end ! :)
by armink
Fri Apr 01, 2005 1:06 pm
Forum: General Development
Topic: Delete exe while application running ?
Replies: 4
Views: 1694

Just copy e.g. c:\f.exe to z:\f.exe while somebody has started it from z:\ Cause some people start the App from Z:\ via desktop links while I'm improving the Application locally. When I'm ready with compiling I want to copy the exe to the net location, but when somebody has started it, I get the mes...
by armink
Fri Apr 01, 2005 12:24 pm
Forum: General Development
Topic: Delete exe while application running ?
Replies: 4
Views: 1694

Delete exe while application running ?

MayBe this is a silly question ... but is it possible to compile an Application whose exe file may be deleted or overwritten while it is started ? :oops:
by armink
Wed Mar 30, 2005 2:40 pm
Forum: Compiler / Linking / IDE Related
Topic: How to get the applications startup path ?
Replies: 4
Views: 2087

Thats it !

As given in my other thread below, i`m not able to get a directory when started from network drives.

This allows a workaround (I need the startup path) until I found the reason of the mingw/getcwd problem.

Thank you very much ! :D
by armink
Wed Mar 30, 2005 1:21 pm
Forum: Compiler / Linking / IDE Related
Topic: How to get the applications startup path ?
Replies: 4
Views: 2087

How to get the applications startup path ?

Has anybody an idea how to get above without getcwd function ?
by armink
Wed Mar 30, 2005 6:30 am
Forum: Compiler / Linking / IDE Related
Topic: no working directory returned when compiled with mingw
Replies: 0
Views: 921

no working directory returned when compiled with mingw

Hello ! Im facing the following problem: When I compile my App with CYGWIN , the wxFileName::GetCwd() command returns the correct path wherever the application was started from e.g D:\mytest\test1 or Z:\mytest\test1.... When compiled with MINGW, this works only if I start it from a local drive. When...
by armink
Mon Mar 14, 2005 11:40 am
Forum: General Development
Topic: wxGetEnv returns wrong val ?
Replies: 4
Views: 1270

yeah ...

Tried it out , Thats it !

Thank you ! :D
by armink
Mon Mar 14, 2005 11:10 am
Forum: General Development
Topic: wxGetEnv returns wrong val ?
Replies: 4
Views: 1270

Thanks ...

but I need the full notation for further use of the path.

So I have to find another solution ?
by armink
Mon Mar 14, 2005 7:56 am
Forum: General Development
Topic: wxGetEnv returns wrong val ?
Replies: 4
Views: 1270

wxGetEnv returns wrong val ?

Hello,

I try to get the value of the TEMP variable under Win XP.

Its value is

c:\documents and settings\user ... etc

But when I use GetEnv, it returns a path like

c:\docume~1\user\... etc ...

Anybody a clue whats wrong ?

Working with wx2.4.2/XP/Cygwin
by armink
Mon Mar 14, 2005 7:51 am
Forum: General Development
Topic: wxWindow Report Engine
Replies: 1
Views: 995

Reports

Have a look at
http://www.daily.de/RepWrt/

I intend to use it, if you try it out before , please let me know ...
by armink
Tue Mar 01, 2005 12:47 pm
Forum: General Development
Topic: XPM icons malformed colour definition
Replies: 2
Views: 1353

xpm

That was it !

Format was "RGB00", I just removed the trailing "00"s, now it works fine.

Thanx ! :)