Showing results for March 2010 - Page 4 of 4 - The Old New Thing

Mar 4, 2010
0
0

What happens if I drag the mouse by exactly the amount specified by SM_CXDRAG?

Raymond Chen
Raymond Chen

The drag sensitivity is specified by the system metrics and . What happens if I drag the mouse by exactly the amount specified by these two parameters? Nothing. These parameters control the drag insensitivity of the mouse. If your mouse motion is less than or equal to this amount, then nothing happens. This is spelled out in the documentation...

Code
Mar 3, 2010
0
0

Voicemail security, even stronger than bank security

Raymond Chen
Raymond Chen

Microsoft's telephone department takes security very seriously. Your voicemail password must be at least eight digits long. By comparison, the password for my ATM card is only four digits long. Because voicemail is that important, I guess. (Yes, I know about two-factor authentication. I'm writing this only half-jokingly.)

Non-Computer
Mar 2, 2010
0
0

Microspeak: Dialogue

Raymond Chen
Raymond Chen

Why have a conversation when you can dialogue? I think this is minimal work, but do others care? If they don't, then this is one for the ideas that failed bin. If they do, well let's dialogue... No need to talk when you can dialogue.

OtherMicrospeak
Mar 1, 2010
0
0

Chilly Hilly 2010 kicked my butt

Raymond Chen
Raymond Chen

This year, I was woefully unprepared for the annual Chilly Hilly ride, not having gotten on my bicycle for the entire month of February. And I paid dearly for this lack of preparation, conking out and ending up walking up some of the last few hills. I rode with a few other people, but I quickly ended up lagging behind them. They would sometimes s...

Non-Computer
Mar 1, 2010
0
1

When does STARTF_USESHOWWINDOW override the parameter passed to ShowWindow()?

Raymond Chen
Raymond Chen

kokorozashi wants to know what the rules are which govern when the second parameter to is overridden by the flag. The guiding principle is that the parameter is ignored if the window manager thinks that the window you're creating is the application's main window. The details behind the implementation of this principle change over time, so ever...

Code