Search found 21 matches

by clev
2004-08-19 13:04
Forum: Programmer's Help
Topic: Compiling dcplusplus/client v0.401 fails under Linux
Replies: 45
Views: 24118

Sarge>
windows/ - win32api
GTK++ could cover all crossplatforming(win32,linux x,macos x), so currently it is specially developed only for win32api by arnet
by clev
2004-07-13 16:00
Forum: Other Direct Connect tools
Topic: BCDC++ 0.403a
Replies: 24
Views: 11485

yeah, try hashing on notebook, it looks like very good test machine - probably it is more near to normal user comp.. Yeah, I think only real lamer running his computer with PIO setup HDDs.. Currently I am running Duron 1.6@2.11GHz, cheap UATA100 HDD IBM 80GB 7200rpm 2MB Primary Master with 80pin cab...
by clev
2004-07-13 12:39
Forum: Other Direct Connect tools
Topic: BCDC++ 0.403a
Replies: 24
Views: 11485

yeah, I mean overall system performance is down (system thread/task switching) for example CPU util 60% and GUI is flickering "slowly" drawing and so on.. [wrote=garg] are you running in Ultra DMA mode, with a good cache on your drives, and your filesystem defragmented [/wrote] probably same as your...
by clev
2004-07-13 11:48
Forum: Programmer's Help
Topic: WTL 7.5 fixes?
Replies: 11
Views: 6026

When I did search for onclose( and want to add there MDIDestroy - as was on the CVS, I found that flattabctrl and postmessage(really close) - so I said to me, that something is strange, so I create account and post a message, thx for reactions..
by clev
2004-07-13 11:35
Forum: Other Direct Connect tools
Topic: BCDC++ 0.403a
Replies: 24
Views: 11485

I know, but we are talking about windows :), NT or not, some basement is same, if u saw win2k src code somewhere on the inet ;)..
probably hashing lots of small files, makes my Duron crazy ;)
by clev
2004-07-13 02:32
Forum: Other Direct Connect tools
Topic: BCDC++ 0.403a
Replies: 24
Views: 11485

again sorry garg, I am blind :( Did somebody try remote debugging? I would like to try it, but I borrow Net card from my test machine :-/ (win9x+really real OS-linux) :-P btw hashing probably looks strange, it uses very much CPU time, even if it is set to IDLE.. probably Thread::Switch will be littl...
by clev
2004-07-12 05:42
Forum: Other Direct Connect tools
Topic: BCDC++ 0.403a
Replies: 24
Views: 11485

SORRY!!!
by clev
2004-07-12 05:40
Forum: Other Direct Connect tools
Topic: BCDC++ 0.403a
Replies: 24
Views: 11485

Garg:
[quote=Andy_1]i'm using a win 9x based OS[/quote]
by clev
2004-07-12 05:27
Forum: Programmer's Help
Topic: WTL 7.5 fixes?
Replies: 11
Views: 6026

U are right.. so Garg, go and clean it >:-)
I recommend to search mdidestroy(m_hWnd); on entire solution, resp. dcplusplus project ;)
by clev
2004-07-12 04:51
Forum: Programmer's Help
Topic: WTL 7.5 fixes?
Replies: 11
Views: 6026

I thing, it is easy to change it.. diff for one line, blah ;)
by clev
2004-07-12 04:07
Forum: Programmer's Help
Topic: Please help me i never got theses errors before i formatted
Replies: 12
Views: 6672

probably badly configured project(linker)? .vcproj
garg, post on me too ;)
by clev
2004-07-11 06:12
Forum: Other Direct Connect tools
Topic: BCDC++ 0.403a
Replies: 24
Views: 11485

OOPS :)
by clev
2004-07-11 06:07
Forum: Programmer's Help
Topic: Please help me i never got theses errors before i formatted
Replies: 12
Views: 6672

omg
by clev
2004-07-11 04:44
Forum: Other Direct Connect tools
Topic: BCDC++ 0.403a
Replies: 24
Views: 11485

looks like incompatibility with win98? Try standard dc++ to test it :)
by clev
2004-07-11 04:39
Forum: Programmer's Help
Topic: Please help me i never got theses errors before i formatted
Replies: 12
Views: 6672

better is "clean all" then again "build all".. check dirs again, first is STLport and the last include dir is WTL..
by clev
2004-07-10 12:23
Forum: Other Direct Connect tools
Topic: BCDC++ 0.403a
Replies: 24
Views: 11485

1GB shared on very old fragmented HDD? :)
by clev
2004-07-10 12:18
Forum: Programmer's Help
Topic: Please help me i never got theses errors before i formatted
Replies: 12
Views: 6672

http://msdn.microsoft.com/library/defau ... /C1014.asp
---
u probably badly added include dirs after disk format?
by clev
2004-07-10 12:07
Forum: Programmer's Help
Topic: WTL 7.5 fixes?
Replies: 11
Views: 6026

Uff, I will try to be more clear.. file windows/flattabctrl.h class ATL_NO_VTABLE MDITabChildWindowImpl { ... LRESULT onDestroy(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) { m_hMenu = NULL; // <-HERE bHandled = FALSE; dcassert(getTab()); getTab()->removeTab(m_hWnd); BOOL bMa...
by clev
2004-07-07 18:46
Forum: Other Direct Connect tools
Topic: C# Version
Replies: 6
Views: 5010

no more releases

projects died out ;D
by clev
2004-07-07 16:37
Forum: Programmer's Help
Topic: WTL 7.5 fixes?
Replies: 11
Views: 6026

Re: WTL 7.5 fixes?

Why to add specialy MDIDestroy? - which means that MDIDestroy is actually called twice and probably m_hMenu = NULL; should be in the onReallyClose too, which is probably called every time the window is closed as the last thing (Maybe?<-the thing which I ask :]; destroy is called before posted messa...
by clev
2004-07-07 08:29
Forum: Programmer's Help
Topic: WTL 7.5 fixes?
Replies: 11
Views: 6026

WTL 7.5 fixes?

flattabctrl.h: LRESULT onReallyClose(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) { MDIDestroy(m_hWnd); return 0; } LRESULT onClose(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled */) { PostMessage(WM_REALLY_CLOSE); return 0; } MDI WINDOWs: -onClose>...