Showing results for January 2007 - Page 3 of 4 - The Old New Thing

Jan 15, 2007
Post comments count0
Post likes count0

The wisdom of sev^H^H^Heighth graders: It was not just white people who were helped by Martin Luther King

Raymond Chen
Raymond Chen

(Today is the birthday of the famed civil rights leader, the first time since 2001 that the federal holiday coincides with the correct historical date. It seemed an auspicious date to return to the time machine essay.) The eighth grade students were given the same in-class writing assignment as the seventh graders, with the same ground rules, I ...

Non-ComputerThe wisdom of seventh graders
Jan 15, 2007
Post comments count0
Post likes count0

Does Microsoft internally use MFC for writing Windows apps?

Raymond Chen
Raymond Chen

Craig Ward figures that if he asks enough questions I might answer one of them. "Does Microsoft internally use MFC for writing Windows apps? How about VB?" People use whatever they decide best meets the requirements for the task at hand. That could be a batch file, a C++ program, a perl script, a web page with a bunch of JScript, use your imaginat...

Other
Jan 12, 2007
Post comments count0
Post likes count0

How do I print the contents of a rich text control?

Raymond Chen
Raymond Chen

For some reason, people are really puzzled by rich edit printing. I'm no expert on printing, but even I was able to figure it out. The kernel is the message. Each time you call it, a little bit more of the rich text control is printed, and the message returns the index of the first unprinted character, which you can pass back in to print the next...

Code
Jan 11, 2007
Post comments count0
Post likes count0

The history of the RichEdit control from Murray Sargent

Raymond Chen
Raymond Chen

Murray Sargent is a programmer over in the Office division whose blog deals mostly with math in Office, but he also slips into RichEdit history. If you can't get enough of a history fix from this web site, you can surf on over to Murray's for another hit.

History
Jan 11, 2007
Post comments count0
Post likes count0

How do I put more than 32,000 characters into a rich text control?

Raymond Chen
Raymond Chen

Last time we looked at loading an entire file into a rich text control. The code runs great, until you try to use it to display a license agreement provided by your legal department, and then some paranoid user reports that they can't read past page seven. (What, somebody reads those things?) What's going on? If you don't specify otherwise, the...

Code
Jan 10, 2007
Post comments count0
Post likes count0

Ken Levine teaches us about television script writing

Raymond Chen
Raymond Chen

Ken Levine has written for some of the most well-known television programs of the past few decades. M*A*S*H, Cheers (for which he won an Emmy), Frasier. And that's not counting his second (third? fourth?) career as a baseball announcer. He writes about whatever is on his mind, be it Barry Bonds' 715th home run, what not to put into your televis...

Non-Computer
Jan 10, 2007
Post comments count0
Post likes count0

How do I load an entire file into a rich text control?

Raymond Chen
Raymond Chen

To load an entire file into a rich text control, you can use the message, which accepts an of data all at once. Once you find the message, it's pretty straightforward how to use it, but I'll write out the code anyway; You pretty much follow your nose. The message wants you to tell it the format of the stream () and provide a pointer to an s...

Code
Jan 9, 2007
Post comments count0
Post likes count0

Article of clothing or tasty dessert?

Raymond Chen
Raymond Chen

Balaclava or baklava? I always get the two confused, and I have to stop and think. "Why were the bank robbers covered in a tasty dessert?" "Who wants to eat a hooded knit cap?"

Non-Computer
Jan 9, 2007
Post comments count0
Post likes count0

What triggers the recall of an offline file?

Raymond Chen
Raymond Chen

Hierarchical storage management is one of the taxes software developers have to pay. What can you safely do to an offline file? What will trigger its recall? (First, a note on terminology: Recalling a file means to restore it from remote storage to local storage. A file that has been recalled is online; a file that has been placed on remote stora...

Code
Jan 8, 2007
Post comments count0
Post likes count0

Why do property sheets sometimes take a first-chance exception?

Raymond Chen
Raymond Chen

Reader cmonachan asked why can cause a first-chance exception. This is mentioned in Knowledge Base article 158552. But why take the exception in the first place? First off, let's take MFC out of the picture. The first-chance exception is coming from the property sheet manager. MFC is just the middle-man. Okay, so why the first-chance exception...

History