Ronald Lemmen published two really neat tricks for developers, CRM or otherwise.

The first deals with obtaining the FetchXML code used by CRM internally to perform searches using the Advanced Find feature.  This is really great because it will save CRM developers tons of time. Instead of creating the query by hand, you can utilize CRM itself to create and test the query, then take the FetchXML code used by the query and integrate it into your own code.

Ronald's second tip can be used by just about anyone using Microsoft Windows:

But with Windows XP and Windows Server 2003 you can copy all text on the popup by clicking somewhere on the popup (not on the button "OK" of course) and pressing ctrl+c.

This copies the contents of the MessageBox to the clipboard. You can then paste the code into any other program you wish. 

As an example, here is what happens when you perform the above operation on the following MessageBox:

—————————
Notepad
—————————
The text in the Untitled file has changed.

Do you want to save the changes?
—————————
Yes No Cancel
—————————

 

Is that no cool or what?