PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Vogue
Register Community Search

Notices


Closed Thread
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-11-2008, 09:39 AM
itsall_cooool's Avatar
Halfway to VIP Status
Offline
Pocket PC: Treo 700wx/Mogul/TouchPro/TouchPro2/EVO rooted
Carrier: Sprint
Location: NY
 
Join Date: Sep 2007
Posts: 601
Reputation: 120
itsall_cooool is keeping up the good workitsall_cooool is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Anyone?

Primenall:
HKCU\Software\Microsoft\Windows\CurrentVersion\Int ernet Settings
MaxConnectionsPerServer = dword: 00000010

Is that a binary or decimal # ? (dword: 00000010)

looks like binary to me just want to be sure
__________________
I'm a flashing junkie. (the first step is admitting you have a problem)
  #2 (permalink)  
Old 01-11-2008, 12:21 PM
zander's Avatar
Lurker
Offline
Pocket PC: Vogue
Carrier: Bell
 
Join Date: Dec 2007
Posts: 1
Reputation: 0
zander is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Quote:
Originally Posted by itsall_cooool View Post
Primenall:
HKCU\Software\Microsoft\Windows\CurrentVersion\Int ernet Settings
MaxConnectionsPerServer = dword: 00000010

Is that a binary or decimal # ? (dword: 00000010)

looks like binary to me just want to be sure
I'd like an answer to this too, please. Thanks.

Last edited by zander; 01-11-2008 at 12:33 PM.
  #3 (permalink)  
Old 08-14-2008, 11:12 PM
frejos's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC Fuze
Carrier: AT&T
Location: Conway, AR
 
Join Date: Jan 2008
Posts: 70
Reputation: 130
frejos is keeping up the good workfrejos is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Registry Tweaks/Hacks/Edits - Share them here!

Quote:
Originally Posted by itsall_cooool View Post
Primenall:
HKCU\Software\Microsoft\Windows\CurrentVersion\Int ernet Settings
MaxConnectionsPerServer = dword: 00000010

Is that a binary or decimal # ? (dword: 00000010)

looks like binary to me just want to be sure
Quote:
Originally Posted by zander View Post
I'd like an answer to this too, please. Thanks.
I know it's been a while, but I don't think anyone ever answered. Short answer it's decimal.

This is the number of connections that are allowed to be made for a web page in IE (its also used by the foundation classes). Think of it like this, you load a web page that has 30 images on it. Each one of those images (style sheets, java script files, etc) all need a separate connection to download. The default used to be 2, meaning you would download two images, then two more, then two more... and so on. They changed the default value over the years to 4... whooo hoo, now you download 4 at a time. Changing this value to 10 (decimal) means you can download 10 items at once from the same site. So a site that has 30 images would download in about 3 sets instead of 7-8 with a setting of 4.

Thanks,
__________________
frejos
Device: HTC Fuze / WM 6.1
Twitter | Blog

Chronobis - OWA Synchronization v0.7.0.13
Connects Directly to OWA
Download Appointments, Contacts, and Tasks
Visit http://www.chronobis.com for more details...
  #4 (permalink)  
Old 08-15-2008, 12:06 AM
rstoyguy's Avatar
SuperNoob
Offline
Pocket PC: iPhone 5s
Carrier: TMobile
Location: Wichita, KS
 
Join Date: Jan 2008
Posts: 6,309
Reputation: 23264
rstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation levelrstoyguy can't get a higher reputation level
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Registry Tweaks/Hacks/Edits - Share them here!

Quote:
Originally Posted by frejos View Post
I know it's been a while, but I don't think anyone ever answered. Short answer it's decimal.

This is the number of connections that are allowed to be made for a web page in IE (its also used by the foundation classes). Think of it like this, you load a web page that has 30 images on it. Each one of those images (style sheets, java script files, etc) all need a separate connection to download. The default used to be 2, meaning you would download two images, then two more, then two more... and so on. They changed the default value over the years to 4... whooo hoo, now you download 4 at a time. Changing this value to 10 (decimal) means you can download 10 items at once from the same site. So a site that has 30 images would download in about 3 sets instead of 7-8 with a setting of 4.

Thanks,
Quote:
Originally Posted by itsall_cooool
Primenall:
HKCU\Software\Microsoft\Windows\CurrentVersion\Int ernet Settings
MaxConnectionsPerServer = dword: 00000010

Is that a binary or decimal # ? (dword: 00000010)
This value is actually a hexadecimal value. The "dword" tells your registry that this is a DoubleWord which is Hex. The value above is equivalent to 16 in decimal which we all understand...

dword:00000010 = 16 Check it out with PHM Regedit, enter the value, then switch between Decimal and Hex.

Edit: Probably an easy way to tell is...

If you see a edit with brackets around the key like:

[HKEY_LOCAL_MACHINE\SOFTWARE\Example]
"GPSMode"=dword:14

This is gonna be in HEX (Usually copied from inside a ROM)

If you see an edit without the brackets like:

HKEY_LOCAL_MACHINE\SOFTWARE\Example
GPSMode=14

Then this value is most likely decimal...
__________________
If this post was helpfull, let me know by clicking Thanks!


Last edited by rstoyguy; 08-15-2008 at 12:12 AM.
  #5 (permalink)  
Old 08-15-2008, 12:21 AM
frejos's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC Fuze
Carrier: AT&T
Location: Conway, AR
 
Join Date: Jan 2008
Posts: 70
Reputation: 130
frejos is keeping up the good workfrejos is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Registry Tweaks/Hacks/Edits - Share them here!

Ok, I guess my point was it doesn't really matter. If you want it to be 10 enter it as decimal, if you want it to be 16 enter it as Hex

The problem is that most registry editors allow you to enter a DWORD as either Hex or Decimal and unless there are Hex letters in it it is difficult to tell which is which if it isn't specified. I guess, another rule of thumb would be if it has leading zeros it is probably meant to be in Hex.

So, always specify decimal or hex, if it really matters
  #6 (permalink)  
Old 08-15-2008, 12:36 AM
denasqu's Avatar
Regular 'Geeker
Offline
Pocket PC: HTC Touch (Verizon XV6900)
Carrier: Verizon
Location: South Florida
 
Join Date: Jul 2008
Posts: 324
Reputation: 190
denasqu is keeping up the good workdenasqu is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via MSN to denasqu
Re: Registry Tweaks/Hacks/Edits - Share them here!

Quote:
Originally Posted by frejos View Post
Ok, I guess my point was it doesn't really matter.


And of course if the value is 0-9 it really REALLY doesn't matter.

And a 10 is a 10 is 10 in Decimal but in Hex a 10 is 16!!

And If only DEAD people understand hexadecimal, how many people understand hexadecimal?

Answer:
In decimal.. 0.
In hex ... 57005

__________________
  #7 (permalink)  
Old 01-11-2008, 03:14 PM
itsall_cooool's Avatar
Halfway to VIP Status
Offline
Pocket PC: Treo 700wx/Mogul/TouchPro/TouchPro2/EVO rooted
Carrier: Sprint
Location: NY
 
Join Date: Sep 2007
Posts: 601
Reputation: 120
itsall_cooool is keeping up the good workitsall_cooool is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Quote:
Originally Posted by itsall_cooool View Post
Primenall:
HKCU\Software\Microsoft\Windows\CurrentVersion\Int ernet Settings
MaxConnectionsPerServer = dword: 00000010

Is that a binary or decimal # ? (dword: 00000010)

looks like binary to me just want to be sure

Bump: anyone?
  #8 (permalink)  
Old 01-11-2008, 04:02 PM
argov's Avatar
PPCGeeks Regular
Offline
Pocket PC: TP2
Carrier: Sprint
 
Join Date: Jun 2007
Posts: 118
Reputation: 25
argov is just getting started
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Quote:
Originally Posted by itsall_cooool View Post
Bump: anyone?
if you notice the next step is to
Quote:
Create the following DWORD value in this directory (the 0 in "0server" is a number)

HKCU\Software\Microsoft\Windows\CurrentVersion\Int ernet Settings
MaxConnectionsPer1_0Server = dword: 00000020

I don't think 2 is a binary

it's working for me with decimal
Closed Thread

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Vogue


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 01:45 AM.


Powered by vBulletin® ©2000 - 2025, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com