Click here to Skip to main content

Michael Dunn - Professional Profile

186,079
Author
25,874
Authority
12,256
Debator
85
Editor
20
Enquirer
616
Organiser
6,878
Participant
25 Mar 2011: Best C++/MFC article of February 2011
31 Dec 2009: CodeProject MVP 2010
31 Dec 2007: CodeProject MVP 2008
19 Mar 2007: Best C++/MFC article of Feb 2007
25 Feb 2007: All Topics Jan 2007
31 Dec 2006: CodeProject MVP 2007
31 Jan 2006: MFC/C++ Jan 2006
31 Dec 2004: CodeProject MVP 2005
29 Sep 2003: MFC/C++ Aug 2003
29 Mar 2003: MFC/C++ Feb 2003
30 Oct 2002: MFC/C++ Sep 2002
Michael lives in sunny Mountain View, California. He started programming with an Apple //e in 4th grade, graduated from UCLA with a math degree in 1994, and immediately landed a job as a QA engineer at Symantec, working on the Norton AntiVirus team. He pretty much taught himself Windows and MFC programming, and in 1999 he designed and coded a new interface for Norton AntiVirus 2000.
Mike has been a a developer at Napster and at his own lil' startup, Zabersoft, a development company he co-founded with offices in Los Angeles and Odense, Denmark. Mike is now a senior engineer at VMware.

He also enjoys his hobbies of playing pinball, bike riding, photography, and Domion on Friday nights (current favorite combo: Village + double Pirate Ship). He would get his own snooker table too if they weren't so darn big! He is also sad that he's forgotten the languages he's studied: French, Mandarin Chinese, and Japanese.
 
Mike was a VC MVP from 2005 to 2009.
Member since Thursday, July 6, 2000 (11 years, 10 months)

 

Below is the list of groups in which the member is participating


CodeProject Insiders



United States United States

Member



Collaborative Group
members


For more information on Reputation please see the FAQ.
 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 31 May 2012
Copyright © CodeProject, 1999-2012
All Rights Reserved. Terms of Use
Layout: fixed | fluid

You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
  Refresh
GeneralYou're on notice Pin
Monday, January 1, 2007 9:22 PM
Clickety[^]
 
--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ

GeneralHelp PinmemberMiss_F1:22 5 Feb '09  
 
GeneralReady... set... Boost! Pin
Monday, December 25, 2006 4:58 PM
My contribution for the day, a USB drive that works with ReadyBoost:
BUFFALO 2GB Flash Drive (USB2.0 Portable) Model RUF2-E2G-BK[^] - 35 bucks at Newegg.
 
Now I just need to actually do some work so I can test out how the laptop responds w/the new memory. Wink | ;)
 
--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ
 
Ford, what's this fish doing in my ear?

 
GeneralThe cure for FF2 tab blowieness Pin
Thursday, December 14, 2006 9:21 PM
When running Aero, the tabs in FF 2 are bloody awful - it's too hard to tell where the tab boundaries are because they're all gray. So I was poking around extensions and came upon Colorful Tabs[^], which makes each tab a different color. Right now I have 4 tabs and they are gray, green, pink, and red. Nice!
But then I had the problem of not being able to tell which tab was the current one. Sure, the text is bold but that isn't easy enough to spot at a glance. So I added this to my userChrome.css:
.tabbrowser-tabs > tab[selected="true"]
{
  background-color:red !important;
}
 
.tabbrowser-tabs > tab:not([selected="true"]):hover
{
  background-color:dodgerblue !important;
}
Bam! Now the active tab has a red background, and others get a blue background on mouseover.
 
--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ

 
GeneralInstalling Visual Studio 6 on Vista Pin
Sunday, December 10, 2006 7:08 PM
As one of the few, the proud, the VC6 users, I figured I'd post my experience installing it on Vista for posterity. Welcome to all of you viewing this from the future (or 2007, as I am calling it currently).

I started with:
Vista RTM Ultimate
Visual Studio 6 Enterprise
VS6 SP6
October 2001 MSDN
February 2003 Platform SDK (all CAB files unzipped and burned to CD)
 
Before we start: Vista will show some warnings about programs having compatibility problems with Vista. Since I use VC6 for work, I threw caution to the wind and ignored the warnings. I've had no troubles yet. Wink | ;)
 
  1. Run the VS6 installer. The first thing it will do is update the Java VM. Once that's done, let it reboot the machine.
  2. Once you've rebooted and relogged, the install wizard will come up automatically. Close the wizard right away. The wizard is not running elevated, so it won't be able to do its job.
  3. Rerun the wizard and install the VS components you want.
  4. When you get to the part where it prompts you to install MSDN, I said no because I'll install it later. Continue on with the wizard (I don't install any of the additional stuff) and finish the process.
  5. Put in your Oct 2001 MSDN disc and run the installer on the disc. I had no hiccups at all installing this.
  6. Run VS6 once and close it right away. I got in the habit of doing this because years and years ago, the Platform SDK wouldn't install if you had not run VS once yet.
  7. Install VS6 SP6. Again, I had no troubles here. Run VS once and close it just to be sure.
  8. Install the Platform SDK. Because the installer uses an ActiveX control, you'll be stuck if IE is not your default browser. If this is the case, either make IE the default temporarily, or drag default.htm from the root of the disc into IE. IE will ask you if it's OK to run active content to run from the local machine, say yes.
  9. Use the PlatSDK Visual Studio Registration tool to add the PSDK dirs to the VS include and lib paths.
  10. Optional: Create a shortcut to msdev (I pin it to the Start menu) and set the shortcut properties to always run the app elevated. I need to do this because otherwise I can't build DLL COM servers; regsvr32 needs write access to HKCR and HKLM, which it won't have unless the IDE is running elevated.
  11. Run VS6 and enjoy your IDE! In beta 2, MSDN didn't run unless it was elevated, but this has been fixed in RTM.
I also use the WMP 10 Player SDK and that too installed without a hitch.
 
--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ

GeneralRe: Installing Visual Studio 6 on Vista PinmemberMike Dimmick23:58 10 Dec '06  
GeneralRe: Installing Visual Studio 6 on Vista Pinmemberklauswiesel9:56 18 Sep '08  
 
GeneralGriffith Observatory pictures Pin
Saturday, November 4, 2006 10:41 AM
Here are the pics from my trip to the Griffith Observatory[^], on the day it reopened after nearly 5 years of renovation/expansion: Clickety[^]
 
--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ

 
GeneralSimplified Chinese translations of my WTL series Pin
Sunday, April 9, 2006 6:55 AM
Thanks to Simon W!
part 1: http://www.winmsg.com/wtl/Part1.htm[^]
part 2: http://www.winmsg.com/wtl/Part2.htm[^]
part 3: http://www.winmsg.com/wtl/Part3.htm[^]
part 4: http://www.winmsg.com/wtl/Part4.htm[^]
part 5: http://www.winmsg.com/wtl/Part5.htm[^]
part 6: http://www.winmsg.com/wtl/Part6.htm[^]
part 7: http://www.winmsg.com/wtl/Part7.htm[^]
part 8: http://www.winmsg.com/wtl/Part8.htm[^]
part 9: http://www.winmsg.com/wtl/Part9.htm[^]

(note that parts 1-8 are currently the older revisions, and don't reflect the updates I made in early 2006)
 
--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | NEW!! PimpFish | CP SearchBar v3.0 | C++ Forum FAQ
GeneralRe: Simplified Chinese translations of my WTL series [modified] PinmemberDandy Cheung4:15 3 Aug '06  
GeneralRe: Simplified Chinese translations of my WTL series PinsitebuilderMichael Dunn13:22 4 Aug '06  
Thanks Dandy. It would be better in the future to contact the original translator to fix any problems. That way, we can avoid having multiple versions of the article out on the net.
 
--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ
GeneralRe: Simplified Chinese translations of my WTL series PinadminChris Maunder4:37 11 Aug '06  
GeneralRe: Simplified Chinese translations of my WTL series PinmemberDandy Cheung17:49 19 Aug '06  
GeneralRe: Simplified Chinese translations of my WTL series PinsitebuilderMichael Dunn21:46 12 Aug '06  
GeneralRe: Simplified Chinese translations of my WTL series PinmemberDandy Cheung17:42 19 Aug '06  
QuestionHow can i give access permissions to user in active directory using vb.net Pinmemberkoolprasad200321:07 10 May '07  
 
GeneralSOMEONE forgot to introduce me to SOMEONE Pin
Saturday, September 17, 2005 6:52 PM
So this is as close as I got... Sniff | :^)
 
 

 
--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | 1ClickPicGrabber | NEW~! CP SearchBar v3.0 | C++ Forum FAQ
GeneralRe: SOMEONE forgot to introduce me to SOMEONE PinmemberMichael P Butler8:23 18 Sep '05  
GeneralRe: SOMEONE forgot to introduce me to SOMEONE PinmemberMr.Prakash22:21 17 Jan '06  
GeneralRe: SOMEONE forgot to introduce me to SOMEONE PinsitebuilderMichael Dunn16:04 18 Jan '06  
GeneralRe: SOMEONE forgot to introduce me to SOMEONE PinmemberJeremy Falcon23:38 13 Feb '06  
 
GeneralWhat I Learned From PDC Pin
Saturday, September 17, 2005 6:20 PM
or, "I spent good money on this thing... might as well blog about it"

1. Gretchen[^] is a cool gal.
2. Raymond[^] is a really cool guy.
3. People love Anders Hejlsberg and Don Box. Don because he's whacky, Anders because he's down-to-earth and gets to demo the cool stuff (XLINQ especially).
4. IE 7 Protected Mode (low rights mode) is going to cause headaches for legit toolbars too (like mine).
5. Even us jaded geeks can still mark out for stuff occasionally. Witness the "show your open apps as a stack of windows so you can flip through them" demo in the keynote.
6. Lots of people have used my WTL articles. I had 3 total strangers come up and introduce themselves, saying they recogized my name and they had really liked the articles. Now I feel bad for not updating them for so long since some of the code won't compile in VC7.
7. An Alienware laptop can double as a leg exercise machine, plus the heat will soothe your muscles afterwards.
7a. I want one.
8. The first feature people will want to turn off in Longhorn is the glow that moves across progress bars. Yuck.
9. The first feature that shareware devs will steal from Longhorn and make work on XP is the thumbnails for minimized apps when you point at their taskbar button.
10. TaskDialog() and TaskDialogEx() - at least someone is looking out for us "crusty old Win32 developers."
11. The BoFs I attended turned out to be busts, but at least I got a nice shot of the Convention Center at night[^].
12. Being right next to thousands of free t-shirts [^] is a sub-optimal location to find oneself in.
13. The beta version of 1ClickPicGrabber[^] caused a reproducible bluescreen on Longhorn beta 2. Cool | :cool:
14. Avalon is going to make for some really nifty animation/gfx apps... and some really annoying ones too. Videos playing in realtime on playing cards?[^] Imagine everyone doing that... Dead | X|
 
Pictures:
Channel9 guy making a cameo
OMG SHIRTS!!!!!11
What are those guys talking about? The site isn't slow. What? Oh yeah, I have a local copy... so?
The only thing open in downtown LA at night
Lots of brainpower and electronic equipment in the C9 lounge
Raymond Chen makes a rare public appearance
My 2nd favorite autograph (#1 being Alyson's naturally)
 
--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | 1ClickPicGrabber | NEW~! CP SearchBar v3.0 | C++ Forum FAQ
Ford, what's this fish doing in my ear?
GeneralRe: What I Learned From PDC PinmemberMichael P Butler8:22 18 Sep '05  
 
GeneralCelebrating 10 years of geekdom Pin
Sunday, January 2, 2005 8:57 PM
This week's poll, and the serendipitous arrival of a new Joel on Software article[^], sparked some thoughts about how I got into this whole programming thing.

In mid-January, 1995, I got my first job in the software biz, as an Associate QA Engineer at Symantec[^]. I think I impressed my eventual boss not with my half-page résumé, but with the spell checker program that I brought with me to show that I did, in fact, know C++.

Once I was there, my boss gave me a crash course in Win32 stuff, but I was pretty much on my own as far as learning. (Remember this was 1995*, no public 'net yet, certainly no awesome resources like CP, and even back then I had come to the conclusion that Usenet sucked.) After much self-teaching, book-reading, and article-writing, I can say it's been quite a journey. Not always good or enjoyable, but then what is?

The traditional 10 year anniversary gift is, if I'm not mistaken, a 21" widescreen LCD monitor. The collection plate will be passed around now... Wink | ;)

*Gawd I feel so old when I say things like that, or "this was before the net" or "this was before cell phones" or even the dreaded "this was before Google"
 
--Mike--
LINKS~! Ericahist | 1ClickPicGrabber | CP SearchBar v2.0.2 | C++ Forum FAQ | You Are Dumb
Magnae clunes mihi placent, nec possum de hac re mentiri.

GeneralRe: Celebrating 10 years of geekdom PinmemberNibu babu thomas3:07 28 May '07