Posts by this author

Nov 7, 2003
Post comments count0
Post likes count0

Returning values from a dialog procedure

For some reason, the way values are returned from a dialog procedure confuses people, so I'm going to try to explain it a different way. The trick with dialog box procedures is realizing that they actually need to return two pieces of information: Since tw...

Code
Nov 6, 2003
Post comments count0
Post likes count0

Little facts you didn't know about concrete

Concrete is stronger once it has hardened. Thanks, Associated Press! I learn something new every day.

Non-ComputerNews flash
Nov 6, 2003
Post comments count0
Post likes count0

Why are companies so worried about retraining costs?

Remember, most people do not view the computer as a world to be explored. It is merely a means to an end. So they learn the five steps they need to follow, and if they can't do them, they get stuck. "I hit Alt+Tab like I always do, to switch to another program, but instead of switching, this strange window show...

Other
Nov 5, 2003
Post comments count0
Post likes count0

An anecdote about improper capitalization

I've already discussed some of the strange consequences of case-sensitive comparisons. Joe Beda mentioned the Internet Explorer capitalization bug that transformed somebody's name into a dead body. Allow me to elaborate. You might learn something. This bug occurred because ...

Other
Nov 4, 2003
Post comments count0
Post likes count0

Just follow the rules and nobody gets hurt

You may have been lazy and not bothered calling VirtualProtect(PAGE_EXECUTE) when you generated some code on the fly. You got away with it because the i386 processor page protections do not have a "read but don't execute" mode, so anything you could read you could also execute. Until ...

Code
Nov 3, 2003
Post comments count0
Post likes count1

The long and sad story of the Shell Folders key

When you are attempting to architect an operating system, backwards compatibility is one of the ones you just have to accept. But when new programs rely on app hacks designed for old programs, that makes you want to scream.

CodeHistory
Oct 31, 2003
Post comments count0
Post likes count1

Why highlighting by inverting colors is a bad idea

Often people will say, "Oh, we can highlight by inverting the color." This may have worked great on two-color black-and-white displays, but in the world of 32-bit color this no longer is effective. Consider the following picture. See if you can guess which one is inverted. ...

Code
Oct 30, 2003
Post comments count0
Post likes count0

I thought you said people don't know how to read analog clocks

I had mentioned in passing in a comment on 10/10/2003 10:07PM that one of the reasons the clock on the taskbar isn't analog is that some disturbingly high percentage of people (30%? 40%? I forget exactly) do not know how to read an analog clock. Yet there is is in the Longhorn sidebar. What g...

History
Oct 29, 2003
Post comments count0
Post likes count0

Drawing an active-looking caption even when not active

"Why would somebody ever want to do that?" you might ask. Well, this is a common appearance for floating toolbars. (But aside from that case, I can't think of any other valid reason to draw a window as active even though it isn't.) Fortunately this is easy to do. Just add this line to the of ...

Code
Oct 28, 2003
Post comments count0
Post likes count0

When vendors insult themselves

During Windows 95, when we were building the Plug and Play infrastructure, we got an angry letter from a hardware vendor (who shall remain nameless) complaining that we intentionally misspelled their company name in our INF files in a manner that made their company name similar to an insulting word. ...

History