Showing archive results for 2003

Nov 24, 2003
Post comments count0
Post likes count0

You can drag/drop to the command prompt

Raymond Chen

The command prompt is a drop target: Dropping a file onto it inserts the filename.

Tips/Support
Nov 21, 2003
Post comments count0
Post likes count1

Why isn't Fast User Switching enabled on domains?

Raymond Chen

Windows XP added a new feature called Fast User Switching which lets you switch between users without having to log off. But this feature is disabled if your computer is joined to a domain. Why? There were several reasons, none of them individually insurmountable, but they added up to quite a lot of work for something IT administrators weren't ev...

History
Nov 20, 2003
Post comments count0
Post likes count1

What's the deal with the System Volume Information folder?

Raymond Chen

In the root of every drive is a folder called "System Volume Information". If your drive is NTFS, the permissions on the folder are set so not even administrators can get in there. What's the big secret? The folder contains information that casual interference could cause problems with proper system functioning. Here are some of the things kept...

Tips/Support
Nov 19, 2003
Post comments count0
Post likes count0

Notepad's geek options require Word Wrap be disabled

Raymond Chen

If you want to use the "Go To" or "Status Bar" options, you have to turn off word warp first. (Word wrap messes with line breaks.)

Tips/Support
Nov 19, 2003
Post comments count0
Post likes count0

How can I tell if I have the 64-bit edition of Windows?

Raymond Chen

Answer: Your wallet is empty. Seriously, there is no way you bought an Itanium by mistake. They are expensive machines: The entry-level workstation available from HP (who co-developed the Itanium with Intel) goes for over $3000 and the entry-level server is over $13,000. And in addition to paying for the computer itself, you probably had to instal...

Tips/Support
Nov 18, 2003
Post comments count0
Post likes count0

Make sure the buttons match the question

Raymond Chen

When your program displays a dialog box with buttons, please make the buttons match the text. Consider this dialog, which appears after you install patches from Windows Update: It asks a yes/no question, but the options are "OK" and "Cancel". Either the buttons should be c...

Code
Nov 17, 2003
Post comments count0
Post likes count0

Another favorite from the Grauniad

Raymond Chen

The world: a primer Great Britain Small American dependency located approximately 5,000 miles outside Galveston, Texas.

Non-Computer
Nov 17, 2003
Post comments count0
Post likes count5

More stories of bad hardware

Raymond Chen

My favorite bad CD-ROM drive from Windows 95 was one where the manufacturer cut a corner to save probably twenty-five cents. The specification for CD-ROM controllers indicates that each can host up to four CD-ROM drives. When you talk to the card, you specify which drive you wish to communicate with. The manufacturer of a certain brand of contr...

History
Nov 17, 2003
Post comments count0
Post likes count0

Stay healthy: Drink Guinness

Raymond Chen

Flavenoids in Guinness combat fatty deposits in arteries. Note, however that the beer was consumed by being "fed ... via tubes directly into their stomachs." On the other hand, a friend of mine points out, "I thought a tube leading directly to the stomach was also called the esophagus. That's my Guinness ...

Non-Computer
Nov 14, 2003
Post comments count0
Post likes count0

Preventing edit control text from being autoselected in a dialog box

Raymond Chen

By default, when the user TABs to an edit control in a dialog box, the entire contents of the edit control are autoselected. This occurs because the edit control responds with the flag in response to the message. To prevent it from happening, remove that flag. All this subclass procedure does is remove the flag from the return value of the ...

Code