Search found 134 matches

by Gratch06
2003-10-06 16:46
Forum: Feature Discussion (Archived)
Topic: RAR..?
Replies: 8
Views: 3386

I'm pretty sure of of the mods of dc++ does this (not sure which one thou sorry), however it searches for filename.r and leaves the number off, and uses at most search, so it in theory should return the whole rar set in one search. yeah oDC seems to have this feature. I think that properly arranges...
by Gratch06
2003-10-06 09:32
Forum: DCH++ General
Topic: DCH++ beta test!!!!
Replies: 17
Views: 13621

by Gratch06
2003-10-03 09:27
Forum: Feature Discussion (Archived)
Topic: Suggest "max tab number per row" instead of "
Replies: 2
Views: 1086

I would personally like this as well. I was extremely happy when DC++ went to multiple tab rows, but this one problem of it jumping up and down does get on my nerves. I try to usually keep the number of tabs down to one row, simply because I like having more screen space, but I would much rather SEE...
by Gratch06
2003-09-29 17:12
Forum: Programmer's Help
Topic: Linker errors in 0.262
Replies: 4
Views: 2688

Make sure you have the includes correct. Those are some errors you will get if the includes are wrong. see compile.txt for instructions.

-Gratch06
by Gratch06
2003-09-22 23:03
Forum: Programmer's Help
Topic: Multiple checkboxes in an ExListViewCtrl
Replies: 6
Views: 4278

Yes Twink, that's what I call too much work! I suppose the next question comes along...what alternate implementation would you (collectively) reccommend? I can do it so it saves on a per hub basis, just without any interface support (kind of a blind work in back feature), but I really didn't like th...
by Gratch06
2003-09-22 14:15
Forum: Programmer's Help
Topic: Multiple checkboxes in an ExListViewCtrl
Replies: 6
Views: 4278

Multiple checkboxes in an ExListViewCtrl

I know that you can set the LVS_EX_CHECKBOXES and get a single checkbox at the left hand edge of the control. How would I go about adding a checkbox to, say, another column? My basic goal is to have two checkboxes in Favorite Hubs, one for AutoConnect, and one for Show Parts/Joins. Is this possible ...
by Gratch06
2003-09-22 11:01
Forum: Feature Discussion (Archived)
Topic: "Hidden" reconnecting - bother.
Replies: 23
Views: 7676

DC++ has no control over how the hub software reacts to the entreaty to reconnect automatically. Reconnecting automatically is handled client side. The client initiates the conections, not the hub. doesn't DC++ react to the "nick taken" string? If the hub would simply send another message, would th...
by Gratch06
2003-09-19 20:57
Forum: Feature Discussion (Archived)
Topic: Finish one folder before starting another
Replies: 5
Views: 2561

Roadblock wrote:To be able to search for a particular user across all the hubs , it's a needle in a haystack at the moment .
Moglo

-Gratch06
by Gratch06
2003-09-19 10:18
Forum: Feature Discussion (Archived)
Topic: Disable Search Window Before Connected
Replies: 21
Views: 7090

Twink wrote:isn't that first part of code meant to go in ClientManager not Hubmanager
Ya....you're right. That was just a typo..sorry ;)

-Gratch06

(If a mod would like, they can correct it, I wouldn't mind :))
by Gratch06
2003-09-15 01:24
Forum: Feature Discussion (Archived)
Topic: add search imdb in toolbar/right click when text highlighted
Replies: 2
Views: 1487

Use oDC....I believe it has some sort of suppor for IMDB.

-Gratch06
by Gratch06
2003-09-14 22:55
Forum: Feature Discussion (Archived)
Topic: IP address updater agent
Replies: 6
Views: 2747

It would be nice to have a button "resolve IP adress" which checks the IP at a service like whatismyip.com and fills it in the ip field automatically Sure it would be really convenient, but it would increase traffic immensely on the site that would be chosen. I have added a Detect IP button that go...
by Gratch06
2003-09-14 19:13
Forum: Feature Discussion (Archived)
Topic: Disable Search Window Before Connected
Replies: 21
Views: 7090

//ClientManager, public portion of class int getNumberOfOnlineClients() { //Gratch added for Search window int counterVar = 0; for(Client::Iter i = clients.begin(); i != clients.end(); ++i) { Client* c = *i; if (c->isConnected()) counterVar++; } return counterVar; } void SearchFrame::onEnter() { //...
by Gratch06
2003-09-03 19:22
Forum: Programmer's Help
Topic: Web Page --> variable. How?
Replies: 5
Views: 2917

That did the trick! Works like a charm, thanks Sedulus :D

-Gratch06
by Gratch06
2003-09-01 22:43
Forum: Programmer's Help
Topic: Web Page --> variable. How?
Replies: 5
Views: 2917

Code: Select all

C:\...src\windows\HubFrame.cpp(335): error C2664: 'Speaker<class HttpConnectionListener>::addListener' : cannot convert parameter 1 from 'HubFrame *const ' to 'HttpConnectionListener *'
by Gratch06
2003-09-01 08:09
Forum: Feature Discussion (Archived)
Topic: Disable Search Window Before Connected
Replies: 21
Views: 7090

Sedulus wrote: do think the approach is right though.. a grey search button wouldn't prevent anyone from opening a search window first, closing the hub, and try to search later.
this nice messagebox, like the one that disables connecting to hubs when no nick has been entered, works fine imho.
by Gratch06
2003-08-26 21:17
Forum: Feature Discussion (Archived)
Topic: Disable Search Window Before Connected
Replies: 21
Views: 7090

Well, I suppose I should probably put in the code that I had tweaked with that didn't work correctly, so here goes.... ClientManagerListener.h enum Types { USER_UPDATED, INCOMING_SEARCH, DO_MESSAGE_BOX //Gratch edit }; virtual void onAction(Types, const char*, const char*) throw() { }; //Gratch edit...
by Gratch06
2003-08-26 07:11
Forum: Programmer's Help
Topic: Web Page --> variable. How?
Replies: 5
Views: 2917

Web Page --> variable. How?

I know that you can open a webpage up in a browser from DC++, but is there a way to read a webpage into a variable? If it comes in with all the html tags included, that's fine. I have played with creating HttpConnection variable types, but I can't figure out how to get it OUT of there and into a var...
by Gratch06
2003-08-25 20:34
Forum: Feature Discussion (Archived)
Topic: Disable Search Window Before Connected
Replies: 21
Views: 7090

OK, this being my first time toying with the fire() and onAction system that has been set up, I'm significantly lost. What I DO know: I can fire(someobject::Types, <insert other params here>) It will eventually reach an onAction function which will check the type, and upon finding a match, will exec...
by Gratch06
2003-08-21 16:05
Forum: Feature Discussion (Archived)
Topic: Disable Search Window Before Connected
Replies: 21
Views: 7090

//Gratch - Search check. //ClientManager.h line 67 void search(int aSizeMode, int64_t aSize, int aFileType, const string& aString, bool bMultiSearch = false) { Lock l(cs); int countRooms = 0; for(Client::Iter i = clients.begin(); i != clients.end(); ++i) { if((*i)->isConnected()) { countRooms++; (*...
by Gratch06
2003-08-19 22:31
Forum: Feature Discussion (Archived)
Topic: UL Speed pointer instead of connection type!
Replies: 14
Views: 5653

What about using the speed that showing in the UPLOAD log for the last completed upload? I don't know about recently, but isn't this a buggy number? If I quit the program, and as soon as I come in, I finish a 700 MB upload, the upload shows up as a 700 MB/s? So the formula is: upload transfer speed...
by Gratch06
2003-08-19 19:54
Forum: Feature Discussion (Archived)
Topic: UL Speed pointer instead of connection type!
Replies: 14
Views: 5653

it could always display the highest speed u've uploaded at in there... All downloads start fast for the first few seconds and then slow, at least in the readouts. You're going to have to have some kind of averaging system to keep it honest, and I'd reccommend going all out on it and doing a full av...
by Gratch06
2003-08-17 18:17
Forum: Protocol Alley
Topic: Upload queuing code.
Replies: 2
Views: 2357

bump! I'm curious about GargoyleMT's questions as well, and if there is a "new and improved" upload queueing system that reports the queue position to the client (and then displays it on the client side for clients that support it ). first of all it would require a $Error You are #n in queue| Would ...
by Gratch06
2003-08-07 18:51
Forum: Feature Discussion (Archived)
Topic: These features is a "must do" ´til the next ver
Replies: 8
Views: 3829

1. a Music Library like Kazaa (not so heavy) were i can have all my files like napster with a little music player in the program. Understandably, many people don't use DC++ for the mp3 downloading and DO use it for other purposes. Although MP3 people are a large chunk, I really don't think it merit...
by Gratch06
2003-08-06 19:04
Forum: Feature Discussion (Archived)
Topic: why was it taken away???
Replies: 9
Views: 3871

If I understand correctly, we're discussing adding a % downloaded column to the client. Is this not already in existence in the "status" column? (note that I'm not using the most recent source...). On the source that I'm playing with, I've separated the old style "status column holds everything" to ...
by Gratch06
2003-08-01 16:17
Forum: Programmer's Help
Topic: WTL help - Time Control
Replies: 0
Views: 1419

WTL help - Time Control

I would like to create a box similar to the one in windows where the time is set. It will have a textbox (having a : in the center, if at all possible) and a set of up down arrows at the end. I am able to create labels, listboxes, etc. and manipulate and move them, but my issue is that I don't under...
by Gratch06
2003-07-27 12:05
Forum: Programmer's Help
Topic: MP3 Bitrate/Track Length Algorithm Improvement
Replies: 4
Views: 2522

i recomend you save it, so that only has to be run once. And next time you run the app, it will use the old calculated bitrates. Will look into this solution! thanks for the idea.... It's what JT/dieselmachine uses in his mod (source is linked in the features forum). err....where exactly? I found a...
by Gratch06
2003-07-26 21:02
Forum: Programmer's Help
Topic: MP3 Bitrate/Track Length Algorithm Improvement
Replies: 4
Views: 2522

MP3 Bitrate/Track Length Algorithm Improvement

OK, I currently have a function that will read the bitrate and track length from an MP3 file, but it, unfortunately takes a significant amount of time to work. I am using it to create a modified file list with bitrate and track length included (for use on private hubs with access from only this clie...
by Gratch06
2003-07-25 18:09
Forum: Programmer's Help
Topic: Stupid Question #203
Replies: 5
Views: 2792

Someone will now post 202 stupid questions to make the thread title valid. Haven't they already done that? I've seen you answering a number of stupid questions all over the board ;) The dcdebug statements do output to the Output window of VS.NET when you run it under the debugger. They may, however...
by Gratch06
2003-07-23 22:34
Forum: Programmer's Help
Topic: Stupid Question #203
Replies: 5
Views: 2792

Stupid Question #203

[stupid question]I see all of these nice little dcdebug statements running through the program...where do they output to? A file? doesn't appear to be the main debugger window...I'm using VS.net 2002 if that matters.[/stupid question]

-Gratch06
by Gratch06
2003-07-20 21:06
Forum: Feature Discussion (Archived)
Topic: Filelist priority
Replies: 4
Views: 2108

Or perhaps use the priorities listed a bit more wisely?

-Gratch06
by Gratch06
2003-07-11 14:40
Forum: Programmer's Help
Topic: Italic Text in Userlist?
Replies: 6
Views: 3106

from altctrls.h, in the wtlport library: BOOL SetTextColor(COLORREF cr) { ATLASSERT(::IsWindow(m_hWnd)); return (BOOL)::SendMessage(m_hWnd, LVM_SETTEXTCOLOR, 0, cr); } Where does this SendMessage actually go to? a good bit of this is that I've now reached beyond my knowledge in C++ programming. The ...
by Gratch06
2003-07-10 23:29
Forum: Programmer's Help
Topic: Italic Text in Userlist?
Replies: 6
Views: 3106

OK, I've got an away flag reading correctly on the user, but for some reason it updates all or nothing....this here executes every time a user is added to the userlist: bool HubFrame::updateUser(const User::Ptr& u, bool sorted /* = false */, UserInfo* ui /* = NULL */) { //ctrlUsers.SetTextColor(WinU...
by Gratch06
2003-07-09 16:57
Forum: Programmer's Help
Topic: Italic Text in Userlist?
Replies: 6
Views: 3106

OK, I did some backtracking and here's what I came up with... The list is of type ExListViewCtrl. HubFrame class, private section: ExListViewCtrl ctrlUsers; I would assume (after finding that UsersFrame.h refers to Favorite Users and not to the userlist (DOH)) that this is the list we're talking abo...
by Gratch06
2003-07-07 22:24
Forum: Feature Discussion (Archived)
Topic: Automatic Client Sharefake Finder?
Replies: 6
Views: 2610

If I remember, the newer versions of DC++k emulate DC++ exactly, in other words, undetectable to the server that it IS DC++k, and just looks like normal DC++.

-Gratch06
by Gratch06
2003-07-06 16:57
Forum: Feature Discussion (Archived)
Topic: Automatic Client Sharefake Finder?
Replies: 6
Views: 2610

Try DC++k in the "other tools" section of this forum. Appears to have exactly what you want.

-Gratch06
by Gratch06
2003-07-06 01:25
Forum: Programmer's Help
Topic: Italic Text in Userlist?
Replies: 6
Views: 3106

Italic Text in Userlist?

Working on getting a client/server combo going that supports knowing which users are /away and which are not. The way that I'd LIKE to do it is to adjust the userlist to show all users that are /away in italics. What kind of framework would be needed to change a username to italic when it is added t...
by Gratch06
2003-07-06 01:13
Forum: Programmer's Help
Topic: Client::sendMessage from WinUtil::CheckCommand
Replies: 3
Views: 2486

After adding the command to HubFrame::onEnter (onLine serves to receive messages from the server methinks...but whatever) I can do a check for /away there. The difficulty comes in that it checks commands first, and if it finds a match (as it does using WinUtil::checkCommand() ), it will exit the com...
by Gratch06
2003-07-01 23:07
Forum: Programmer's Help
Topic: Client::sendMessage from WinUtil::CheckCommand
Replies: 3
Views: 2486

Client::sendMessage from WinUtil::CheckCommand

I want to send a message to the server when I go /away....this occurs in WinUtil::CheckCommand. The way that I've seen to send messages to the server from the client is using the sendMessage member of the Client class. I've spent some time trying different methods of doing this, with lessening degre...
by Gratch06
2003-06-23 18:17
Forum: Feature Discussion (Archived)
Topic: Slot management !!!
Replies: 7
Views: 3133

He employs download slots. For example, a maximum of 2 downloads at a time (on a modem). What his goal is is to make up a "dedicated slot" separate from the two normal download slots. Perhaps he is trying to get a file from a user that routinely has long term no slots available. He wants to be tryin...
by Gratch06
2003-06-21 14:17
Forum: Feature Discussion (Archived)
Topic: Queue Line Position
Replies: 16
Views: 5715

Did you check the feature request list? I believe it's already been added to the list...check out "upload queueing" and get back to us with what you find. :) Maybe a search on these forums would be in order as well?

-Gratch06
by Gratch06
2003-06-17 18:52
Forum: Feature Discussion (Archived)
Topic: Wild card search
Replies: 3
Views: 2238

I think he's looking for something a bit more like "ab*yz.mp?" which would return abcyz.mp3 and and abcdeyz.mpg, etc....it's just a way to narrow down the already wildcarded searches. I personally think it's fine the way it is. *shrug*

-Gratch06
by Gratch06
2003-06-17 18:50
Forum: Feature Discussion (Archived)
Topic: Segment Downloading
Replies: 37
Views: 12404

how is it not possible in dc++? Search for segmented downloading or multi downoading or something. Hashing might be another good search term. When you can hand us the proper (i.e. debugged, fully working, optimized, arne quality) code for hashing, it will most likely be in. It IS being worked on, i...
by Gratch06
2003-06-16 20:22
Forum: Feature Discussion (Archived)
Topic: Segment Downloading
Replies: 37
Views: 12404

Also raw commands dont show up on screen.. I think he's looking for the raw commands in client-server/client-client interaction to appear somewhere on his screen. A modification of the source code can do this, though most people really wouldn't need to see it. For my debugging purposes (in solving ...
by Gratch06
2003-06-15 23:24
Forum: Programmer's Help
Topic: [b]dgbhlp.lib can't be opened while compiling[/b]
Replies: 2
Views: 1959

Do a search for dbghelp.lib on these forums. The solution involves migrating extendedtrace.h/cpp from an older version of DC++.

-Gratch06
by Gratch06
2003-06-11 02:28
Forum: Feature Discussion (Archived)
Topic: Private Messages
Replies: 4
Views: 2057

*Adds a vote in support of this one*

- Gratch
by Gratch06
2003-06-11 00:37
Forum: Off Topic
Topic: Linking to a post within a thread?
Replies: 1
Views: 1590

Linking to a post within a thread?

I'm fairly new to the phpBB setup, so forgive me if this is something simple...Is there a way to link to a post within a thread? i.e. if I want to link someone to the third post down on a certain thread, but they don't necessarily need to see the first one as the 3rd one has the info pertinent to th...
by Gratch06
2003-06-11 00:17
Forum: Feature Discussion (Archived)
Topic: Stop automatically reconnecting if kicked...
Replies: 4
Views: 2329

Add in to your hub software a temporary ban option. I know that it works quite effectively to have a kick automatically do a 30 minute temp ban. The user has time to see it and fix the problem, not like an immediate reconnect where they don't have a chance to see OR fix the issue. This sounds like a...
by Gratch06
2003-06-11 00:09
Forum: Feature Discussion (Archived)
Topic: simple solution to a minor problem..
Replies: 7
Views: 3275

Anyway, my only guess of some way that one might possibly come up with such a system is to have some kind of temporary buffering where you try to start the download from one, maybe even more, seperate connections, and if the speed is better, drop the first and keep the other one that was faster. Oh...
by Gratch06
2003-06-10 23:58
Forum: Feature Discussion (Archived)
Topic: Logging into different folders
Replies: 9
Views: 3808

That would be my personal request. Since I don't use any hubs running opchat, and DO talk to some of the same people in different rooms, My ideal setup would be:

Code: Select all

Logs
- PM Logs
  - user1.txt
  - user2.txt
- Mainchat Logs
  - hubaddress.txt
  - hubaddress2.txt
Uploads.txt
Downloads.txt
- Gratch