Search found 14 matches

by Pofis
2004-04-24 03:41
Forum: Programmer's Help
Topic: Newbie calling for help..
Replies: 3
Views: 2659

Browse in the forum and you will se many people asking the same, try here for exemple

I hope it helps you :wink:

Pofis
by Pofis
2004-04-23 04:16
Forum: Off Topic
Topic: How Stuff Works
Replies: 4
Views: 4482

How Stuff Works

If you're the kind of people who is always asking how the things works (like me :p ), this site is for you:
http://www.howstuffworks.com/

I just found it some days ago, it's a great site, i hope you like it.

Pofis
by Pofis
2004-04-21 18:13
Forum: Feature Discussion (Archived)
Topic: Show Only Favourite Users joins/parts
Replies: 4
Views: 2265

Hi

This patch ( http://clientes.netvisao.pt/jorged22/HubFrame.cpp.diff ) should do it,
even if you have show join/part off, it will show the join/part info of the favorite users.

Pofis
by Pofis
2004-04-18 11:17
Forum: Feature Discussion (Archived)
Topic: Group by Hash
Replies: 2
Views: 1600

Seems a good feature to me too.
Looks like hashing is bringing lots of new features and ideias to DC++, which is really good :D

Pofis
by Pofis
2004-04-17 12:59
Forum: Feature Discussion (Archived)
Topic: display country of user in search listings
Replies: 10
Views: 4598

If anyone wants the patch, here it is :D

[edited] this patch only shows the country of the user in transfer view, not in search list

Pofis
by Pofis
2004-04-14 05:40
Forum: Feature Discussion (Archived)
Topic: display country of user in search listings
Replies: 10
Views: 4598

Well some people might like this feature others not, so it should be an option that user can choose either to use or not. Anyway, in my country like 50% of the ISP make a diference between international and national, for example: you have 1GB of download per month for international traffic and 20GB ...
by Pofis
2004-04-11 05:41
Forum: Protocol Alley
Topic: Exploits as defenses
Replies: 8
Views: 5179

Seems a good ideia to me :D Offcourse, for it to work well all the clients need to agree with this new changes in the protocol. let's see what arne thinks of this. anyway, if this ideia move ahead i would like to help you guys. Btw, The fact of needing a public key can move away the newbys, which ca...
by Pofis
2004-04-10 13:48
Forum: Feature Discussion (Archived)
Topic: display country of user in search listings
Replies: 10
Views: 4598

Ok code is done and emailed to arne ;)
I hope it gets implemented in the next release :)

Pofis
by Pofis
2004-04-07 03:31
Forum: Feature Discussion (Archived)
Topic: display country of user in search listings
Replies: 10
Views: 4598

Hi :) I'm trying to do this but i have a little problem: i did the code to split the IP(string) of the users in 4 parts w,x,y,z(strings) eg: IP = 23.24.25.26 w = 23, x = 24, w = 25, z = 26 but now i need to do this operations: ipnum = 16777216*w + 65536*x + 256*y + z but it can only be done with int...
by Pofis
2004-03-20 08:02
Forum: Programmer's Help
Topic: TransferView bug in cvs version
Replies: 0
Views: 1670

TransferView bug in cvs version

hi i just downloaded the src from cvs, and founded a bug, the menu items in transferview seems to be desappear every time the menu is showed. I founded a way to fix this, in file windows/TranferView.cpp, i puted it like this: if ( bCustomMenu ) { transferMenu.DeleteMenu(transferMenu.GetMenuItemCount...
by Pofis
2004-03-16 07:42
Forum: Programmer's Help
Topic: "system" function problem
Replies: 6
Views: 3835

I need it to use some "whois" program to get some info from it.
But seems the better way is to code it myself, instead of using an external program.

Pofis
by Pofis
2004-03-15 14:53
Forum: Programmer's Help
Topic: "system" function problem
Replies: 6
Views: 3835

Now i have another problem :( , when executing the "system" function the command line opens and closes.
is there any way to run it on "background" ?

Thanks

Pofis
by Pofis
2004-03-14 13:16
Forum: Programmer's Help
Topic: "system" function problem
Replies: 6
Views: 3835

thanks alot :D

Pofis
by Pofis
2004-03-14 13:02
Forum: Programmer's Help
Topic: "system" function problem
Replies: 6
Views: 3835

"system" function problem

imagine something like this: string file; file = "some_random_file"; temp = "file.exe " + file + " > temp.txt"; system(temp); // then read temp.txt file, and do some stuff but i get this error: client\Util.cpp(617) : error C2664: 'system' : cannot convert parameter 1 from '_STL::string' to 'const ch...