Showing archive results for August 2005

Aug 1, 2005
Post comments count0
Post likes count0

Microsoft Company Picnic 2005

Raymond Chen
Raymond Chen

This weekend, it was Microsoft's turn to rent Mountain Meadows Farm for the company picnic. As I noted last year, the picnic is put on by a company that just puts on company picnics all summer. In addition to Microsoft, they also do Alaska Air, Honeywell, T-Mobile, and Amazon. I decided to bicycle to the picnic this year. The route was approxim...

Non-Computer
Aug 1, 2005
Post comments count0
Post likes count0

Rendering standard Windows elements

Raymond Chen
Raymond Chen

The DrawFrameControl function allows you to render standard Windows elements in your custom controls. Let's start by simply rendering a selected radio button. Start with our new scratch program and make this very simple change: class RootWindow : public Window { ... protected: void PaintContent(PAINTSTRUCT *pps); ... }; void RootWindow::Pa...

Code