A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows XP » Customizing Windows XP
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Registry change to alter sort order



 
 
Thread Tools Display Modes
  #1  
Old March 25th 07, 12:00 PM posted to microsoft.public.windowsxp.customize
Terry Pinnell
external usenet poster
 
Posts: 442
Default Registry change to alter sort order

XP has for some reason I've never fathomed changed the default sort
order from previous versions. So I am trying to implement the
instructions here
http://support.microsoft.com/default.aspx?kbid=319827
to make a registry change to revert back to the (IMO) much more
logical sequence.

However, I've come across a puzzle. The instructions advise on making
a new DWORD entry, NoStrCmpLogical, with Value = 1. But I already have
a NoStrCmpLogical entry. No problem I thought, I'll just use Modify to
change it. But my existing entry is not a DWORD. It looks like this:
NoStrCmpLogical REG_BINARY 01 00 00 00
And when I try to modify it, in the Value box I see a very strange
looking entry, like this:
0000 01 00 00 00 ....
and I've left it alone for now.

Can someone clarify please?

--
Terry, West Sussex, UK
Ads
  #2  
Old March 25th 07, 03:27 PM posted to microsoft.public.windowsxp.customize
Dave Patrick
external usenet poster
 
Posts: 738
Default Registry change to alter sort order

I'd delete the BINARY type and create a new DWORD

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Terry Pinnell" wrote:
XP has for some reason I've never fathomed changed the default sort
order from previous versions. So I am trying to implement the
instructions here
http://support.microsoft.com/default.aspx?kbid=319827
to make a registry change to revert back to the (IMO) much more
logical sequence.

However, I've come across a puzzle. The instructions advise on making
a new DWORD entry, NoStrCmpLogical, with Value = 1. But I already have
a NoStrCmpLogical entry. No problem I thought, I'll just use Modify to
change it. But my existing entry is not a DWORD. It looks like this:
NoStrCmpLogical REG_BINARY 01 00 00 00
And when I try to modify it, in the Value box I see a very strange
looking entry, like this:
0000 01 00 00 00 ....
and I've left it alone for now.

Can someone clarify please?

--
Terry, West Sussex, UK

  #3  
Old March 25th 07, 04:36 PM posted to microsoft.public.windowsxp.customize
Keith Miller MVP
external usenet poster
 
Posts: 54
Default Registry change to alter sort order

A DWORD of 00000001 is equivalent to a binary value of 01 00 00 00.

It's called little endian. More than you probably want to know can be found
he

http://en.wikipedia.org/wiki/Endianness

So essentially, you already have the correct value.

In the Edit Binary dialog, there are three columns. The first shows offset
of the first byte in the row: '0000', the second shows the bytes: '00 00 00
00', and the third shows an ASCII representation of the bytes: '....'.

Binary vs. Dword shouldn't make a difference for this value, but just to be
sure, you can delete the current Binary value & recreate it as a Dword.


--
Good Luck,

Keith
Microsoft MVP [Windows XP Shell/User]

"Terry Pinnell" wrote in message
...
XP has for some reason I've never fathomed changed the default sort
order from previous versions. So I am trying to implement the
instructions here
http://support.microsoft.com/default.aspx?kbid=319827
to make a registry change to revert back to the (IMO) much more
logical sequence.

However, I've come across a puzzle. The instructions advise on making
a new DWORD entry, NoStrCmpLogical, with Value = 1. But I already have
a NoStrCmpLogical entry. No problem I thought, I'll just use Modify to
change it. But my existing entry is not a DWORD. It looks like this:
NoStrCmpLogical REG_BINARY 01 00 00 00
And when I try to modify it, in the Value box I see a very strange
looking entry, like this:
0000 01 00 00 00 ....
and I've left it alone for now.

Can someone clarify please?

--
Terry, West Sussex, UK


  #4  
Old March 25th 07, 11:34 PM posted to microsoft.public.windowsxp.customize
Terry Pinnell
external usenet poster
 
Posts: 442
Default Registry change to alter sort order

"Keith Miller MVP" wrote:

A DWORD of 00000001 is equivalent to a binary value of 01 00 00 00.

It's called little endian. More than you probably want to know can be found
he

http://en.wikipedia.org/wiki/Endianness

So essentially, you already have the correct value.

In the Edit Binary dialog, there are three columns. The first shows offset
of the first byte in the row: '0000', the second shows the bytes: '00 00 00
00', and the third shows an ASCII representation of the bytes: '....'.

Binary vs. Dword shouldn't make a difference for this value, but just to be
sure, you can delete the current Binary value & recreate it as a Dword.


Thanks Keith, very helpful.

--
Terry, West Sussex, UK
  #5  
Old March 26th 07, 08:42 PM posted to microsoft.public.windowsxp.customize
Kelly
external usenet poster
 
Posts: 1,401
Default Registry change to alter sort order

Added info:

Correcting Windows XP Sort Order
http://www.kellys-korner-xp.com/xp_s.htm#so

Incorrect Sort Order in Windows Explorer in Windows XP
http://support.microsoft.com/default...;EN-US;Q318872

The sorting method is changed in Windows XP. The method that is used for
sorting is described at the following MSDN Web site: StrCmpLogicalW Function

Change the Sort Order Back to W2K Style (Line 107)
http://www.kellys-korner-xp.com/xp_tweaks.htm

To use the Regedit: Save the REG File to your hard disk. Double click it
and answer yes to the import prompt. REG files can be viewed in Notepad by
right clicking on the file and selecting Edit.

Added info:

Sort All by Alphabet - Start Menu and Fav's (Line 196)
http://www.kellys-korner-xp.com/xp_tweaks.htm

--

All the Best,
Kelly (MS-MVP/DTS&XP)

Taskbar Repair Tool
http://www.kellys-korner-xp.com/taskbarplus!.htm


"Terry Pinnell" wrote in message
...
XP has for some reason I've never fathomed changed the default sort
order from previous versions. So I am trying to implement the
instructions here
http://support.microsoft.com/default.aspx?kbid=319827
to make a registry change to revert back to the (IMO) much more
logical sequence.

However, I've come across a puzzle. The instructions advise on making
a new DWORD entry, NoStrCmpLogical, with Value = 1. But I already have
a NoStrCmpLogical entry. No problem I thought, I'll just use Modify to
change it. But my existing entry is not a DWORD. It looks like this:
NoStrCmpLogical REG_BINARY 01 00 00 00
And when I try to modify it, in the Value box I see a very strange
looking entry, like this:
0000 01 00 00 00 ....
and I've left it alone for now.

Can someone clarify please?

--
Terry, West Sussex, UK



  #6  
Old March 26th 07, 09:59 PM posted to microsoft.public.windowsxp.customize
Keith Miller MVP
external usenet poster
 
Posts: 54
Default Registry change to alter sort order

So good to see your sig!!!! :-)


--
Good Luck,

Keith
Microsoft MVP [Windows XP Shell/User]

"Kelly" wrote in message
...
Added info:

Correcting Windows XP Sort Order
http://www.kellys-korner-xp.com/xp_s.htm#so

Incorrect Sort Order in Windows Explorer in Windows XP
http://support.microsoft.com/default...;EN-US;Q318872

The sorting method is changed in Windows XP. The method that is used for
sorting is described at the following MSDN Web site: StrCmpLogicalW
Function

Change the Sort Order Back to W2K Style (Line 107)
http://www.kellys-korner-xp.com/xp_tweaks.htm

To use the Regedit: Save the REG File to your hard disk. Double click it
and answer yes to the import prompt. REG files can be viewed in Notepad by
right clicking on the file and selecting Edit.

Added info:

Sort All by Alphabet - Start Menu and Fav's (Line 196)
http://www.kellys-korner-xp.com/xp_tweaks.htm

--

All the Best,
Kelly (MS-MVP/DTS&XP)

Taskbar Repair Tool
http://www.kellys-korner-xp.com/taskbarplus!.htm


"Terry Pinnell" wrote in message
...
XP has for some reason I've never fathomed changed the default sort
order from previous versions. So I am trying to implement the
instructions here
http://support.microsoft.com/default.aspx?kbid=319827
to make a registry change to revert back to the (IMO) much more
logical sequence.

However, I've come across a puzzle. The instructions advise on making
a new DWORD entry, NoStrCmpLogical, with Value = 1. But I already have
a NoStrCmpLogical entry. No problem I thought, I'll just use Modify to
change it. But my existing entry is not a DWORD. It looks like this:
NoStrCmpLogical REG_BINARY 01 00 00 00
And when I try to modify it, in the Value box I see a very strange
looking entry, like this:
0000 01 00 00 00 ....
and I've left it alone for now.

Can someone clarify please?

--
Terry, West Sussex, UK




  #7  
Old March 27th 07, 09:14 AM posted to microsoft.public.windowsxp.customize
Terry Pinnell
external usenet poster
 
Posts: 442
Default Registry change to alter sort order

"Kelly" wrote:

Added info:

Correcting Windows XP Sort Order
http://www.kellys-korner-xp.com/xp_s.htm#so

Incorrect Sort Order in Windows Explorer in Windows XP
http://support.microsoft.com/default...;EN-US;Q318872

The sorting method is changed in Windows XP. The method that is used for
sorting is described at the following MSDN Web site: StrCmpLogicalW Function

Change the Sort Order Back to W2K Style (Line 107)
http://www.kellys-korner-xp.com/xp_tweaks.htm

To use the Regedit: Save the REG File to your hard disk. Double click it
and answer yes to the import prompt. REG files can be viewed in Notepad by
right clicking on the file and selecting Edit.

Added info:

Sort All by Alphabet - Start Menu and Fav's (Line 196)
http://www.kellys-korner-xp.com/xp_tweaks.htm


Many thanks, Kelly, very helpful.

--
Terry, West Sussex, UK
  #8  
Old March 27th 07, 07:43 PM posted to microsoft.public.windowsxp.customize
Kelly
external usenet poster
 
Posts: 1,401
Default Registry change to alter sort order

Thank you and welcome to DTS. )

--

All the Best,
Kelly (MS-MVP/DTS&XP)

Taskbar Repair Tool
http://www.kellys-korner-xp.com/taskbarplus!.htm


"Keith Miller MVP" wrote in message
...
So good to see your sig!!!! :-)


--
Good Luck,

Keith
Microsoft MVP [Windows XP Shell/User]

"Kelly" wrote in message
...
Added info:

Correcting Windows XP Sort Order
http://www.kellys-korner-xp.com/xp_s.htm#so

Incorrect Sort Order in Windows Explorer in Windows XP
http://support.microsoft.com/default...;EN-US;Q318872

The sorting method is changed in Windows XP. The method that is used for
sorting is described at the following MSDN Web site: StrCmpLogicalW
Function

Change the Sort Order Back to W2K Style (Line 107)
http://www.kellys-korner-xp.com/xp_tweaks.htm

To use the Regedit: Save the REG File to your hard disk. Double click it
and answer yes to the import prompt. REG files can be viewed in Notepad
by right clicking on the file and selecting Edit.

Added info:

Sort All by Alphabet - Start Menu and Fav's (Line 196)
http://www.kellys-korner-xp.com/xp_tweaks.htm

--

All the Best,
Kelly (MS-MVP/DTS&XP)

Taskbar Repair Tool
http://www.kellys-korner-xp.com/taskbarplus!.htm


"Terry Pinnell" wrote in message
...
XP has for some reason I've never fathomed changed the default sort
order from previous versions. So I am trying to implement the
instructions here
http://support.microsoft.com/default.aspx?kbid=319827
to make a registry change to revert back to the (IMO) much more
logical sequence.

However, I've come across a puzzle. The instructions advise on making
a new DWORD entry, NoStrCmpLogical, with Value = 1. But I already have
a NoStrCmpLogical entry. No problem I thought, I'll just use Modify to
change it. But my existing entry is not a DWORD. It looks like this:
NoStrCmpLogical REG_BINARY 01 00 00 00
And when I try to modify it, in the Value box I see a very strange
looking entry, like this:
0000 01 00 00 00 ....
and I've left it alone for now.

Can someone clarify please?

--
Terry, West Sussex, UK






  #9  
Old March 27th 07, 07:43 PM posted to microsoft.public.windowsxp.customize
Kelly
external usenet poster
 
Posts: 1,401
Default Registry change to alter sort order

Most welcome, Terry.

--

All the Best,
Kelly (MS-MVP/DTS&XP)

Taskbar Repair Tool
http://www.kellys-korner-xp.com/taskbarplus!.htm


"Terry Pinnell" wrote in message
...
"Kelly" wrote:

Added info:

Correcting Windows XP Sort Order
http://www.kellys-korner-xp.com/xp_s.htm#so

Incorrect Sort Order in Windows Explorer in Windows XP
http://support.microsoft.com/default...;EN-US;Q318872

The sorting method is changed in Windows XP. The method that is used for
sorting is described at the following MSDN Web site: StrCmpLogicalW
Function

Change the Sort Order Back to W2K Style (Line 107)
http://www.kellys-korner-xp.com/xp_tweaks.htm

To use the Regedit: Save the REG File to your hard disk. Double click it
and answer yes to the import prompt. REG files can be viewed in Notepad by
right clicking on the file and selecting Edit.

Added info:

Sort All by Alphabet - Start Menu and Fav's (Line 196)
http://www.kellys-korner-xp.com/xp_tweaks.htm


Many thanks, Kelly, very helpful.

--
Terry, West Sussex, UK



  #10  
Old March 27th 07, 09:48 PM posted to microsoft.public.windowsxp.customize
Keith Miller MVP
external usenet poster
 
Posts: 54
Default Registry change to alter sort order

Thanks.


--
Good Luck,

Keith
Microsoft MVP [Windows XP Shell/User]

"Kelly" wrote in message
...
Thank you and welcome to DTS. )

--

All the Best,
Kelly (MS-MVP/DTS&XP)

Taskbar Repair Tool
http://www.kellys-korner-xp.com/taskbarplus!.htm


"Keith Miller MVP" wrote in message
...
So good to see your sig!!!! :-)


--
Good Luck,

Keith
Microsoft MVP [Windows XP Shell/User]

"Kelly" wrote in message
...
Added info:

Correcting Windows XP Sort Order
http://www.kellys-korner-xp.com/xp_s.htm#so

Incorrect Sort Order in Windows Explorer in Windows XP
http://support.microsoft.com/default...;EN-US;Q318872

The sorting method is changed in Windows XP. The method that is used for
sorting is described at the following MSDN Web site: StrCmpLogicalW
Function

Change the Sort Order Back to W2K Style (Line 107)
http://www.kellys-korner-xp.com/xp_tweaks.htm

To use the Regedit: Save the REG File to your hard disk. Double click
it and answer yes to the import prompt. REG files can be viewed in
Notepad by right clicking on the file and selecting Edit.

Added info:

Sort All by Alphabet - Start Menu and Fav's (Line 196)
http://www.kellys-korner-xp.com/xp_tweaks.htm

--

All the Best,
Kelly (MS-MVP/DTS&XP)

Taskbar Repair Tool
http://www.kellys-korner-xp.com/taskbarplus!.htm


"Terry Pinnell" wrote in message
...
XP has for some reason I've never fathomed changed the default sort
order from previous versions. So I am trying to implement the
instructions here
http://support.microsoft.com/default.aspx?kbid=319827
to make a registry change to revert back to the (IMO) much more
logical sequence.

However, I've come across a puzzle. The instructions advise on making
a new DWORD entry, NoStrCmpLogical, with Value = 1. But I already have
a NoStrCmpLogical entry. No problem I thought, I'll just use Modify to
change it. But my existing entry is not a DWORD. It looks like this:
NoStrCmpLogical REG_BINARY 01 00 00 00
And when I try to modify it, in the Value box I see a very strange
looking entry, like this:
0000 01 00 00 00 ....
and I've left it alone for now.

Can someone clarify please?

--
Terry, West Sussex, UK






 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off






All times are GMT +1. The time now is 02:20 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.