Showing tag results for History

Jul 11, 2011
Post comments count0
Post likes count1

Windows has supported multiple UI languages for over a decade, but nobody knew it

Raymond Chen

In the early days of Windows, there was a separate version of Windows for each language, and once you decided to install, say, the French version of Windows, you were locked into using French. You couldn't change your mind and, say, switch to German. The reason for this is that there were bits and pieces of language-dependent information stored al...

History
Jul 4, 2011
Post comments count0
Post likes count1

A handful of trips through the time machine

Raymond Chen

A few trips through the time machine: In the Internet Explorer time machine video, I was struck by the remark, "Appearance-wise, very little had changed [in Internet Explorer 4] since IE3. Not much changed in terms of functionality, either." In fact, Internet Explorer 4 was probably the most significant revision of Internet Explorer in its ...

History
May 18, 2011
Post comments count0
Post likes count1

How long do taskbar notification balloons appear on the screen?

Raymond Chen

We saw some time ago that taskbar notification balloons don't penalize you for being away from the computer. But how long does the balloon stay up when the user is there? Originally, the balloon appeared for whatever amount of time the application specified in the member of the structure, subject to a system-imposed minimum of 10 seconds and ...

History
May 10, 2011
Post comments count0
Post likes count1

Why is hybrid sleep off by default on laptops? (and how do I turn it on?)

Raymond Chen

Hybrid sleep is a type of sleep state that combines sleep and hibernate. When you put the computer into a hybrid sleep state, it writes out all its RAM to the hard drive (just like a hibernate), and then goes into a low power state that keeps RAM refreshed (just like a sleep). The idea is that you can resume the computer quickly from sleep, but if...

HistoryTips/Support
Apr 11, 2011
Post comments count0
Post likes count1

Holding down the shift key when right-clicking lets you pin things to the Start menu even when you might have been better off not doing so

Raymond Chen

Holding the shift key when calling up a context menu is a convention for indicating that you want to see additional advanced options which are normally hidden. One of those options is Pin to Start menu. What is this doing as an extended command? The Pin to Start menu command normally appears on the context menu of a program or a shortcut to a pr...

History
Apr 1, 2011
Post comments count0
Post likes count1

The introduction of whimsical teasing in Comic Chat

Raymond Chen

A few months after my post on the sad demise of whimsical teasing in Comic Chat, I received a piece of email from none other than the author of Comic Chat, DJ Kurlander: I was the person that started the Comic Chat project in Microsoft Research and was responsible for that line, "This person is too lazy to create a profile entry." Not a whole ...

History
Mar 22, 2011
Post comments count0
Post likes count4

Why is there the message '!Do not use this registry key' in the registry?

Raymond Chen

Under , there is a message to registry snoopers: The first value is called "!Do not use this registry key" and the associated data is the message "Use the SH­Get­Folder­Path or SH­Get­Known­Folder­Path function instead." I added that message. The long and sad story of the Shell Folders key explains that the registry k...

History
Mar 17, 2011
Post comments count0
Post likes count1

What does the "l" in lstrcmp stand for?

Raymond Chen

If you ask Michael Kaplan, he'd probably say that it stands for lame. In his article, Michael presents a nice chart of the various L-functions and their sort-of counterparts. There are other L-functions not on his list, not because he missed them, but because they don't have anything to do with characters or encodings. On the other hand, those o...

History
Mar 16, 2011
Post comments count0
Post likes count1

What’s up with the mysterious inc bp in function prologues of 16-bit code?

Raymond Chen

A little while ago, we learned about the EBP chain. The EBP chain in 32-bit code is pretty straightforward because there is only one type of function call. But in 16-bit code there are two types of function calls, the near call and the far call. A near call pushes a 16-bit return address on the stack before branching to the function entry point, ...

History
Mar 14, 2011
Post comments count0
Post likes count1

The old DEBUG program can load COM files bigger than 64KB, but that doesn't mean they actually load as a program

Raymond Chen

Some times ago, I described why a corrupted binary sometimes results in the error "Program too big to fit in memory". Commenter Neil was under the impression that nonrelocatable programs files could be larger than 64KB and used the DEBUG command to verify this assertion. While it's true that DEBUG can load files bigger than 64KB, that doesn't me...

History