Blog
|
Humor
Links
|
Music
GB
|
ProgBlog
My Child
Reviews
Login
YIM Emoticons!
GenCon '04
|
'05
My Programs
chaThink
CyberMath
NiftyNewborn
Twitter Follower Checker
Hire Me
Resume
Design Examples
My Art Site
Shop!
Blogtastic - Your guide to the web.
RSS:
Show All
Save View Preference
3/2/2010 2:22:40 PM
Posted By:
Mike
Silverlight project type will not load csproj.
Open csproj file and replace ProjectTypeGuids line with this one:
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1/14/2010 2:39:27 PM
Outlook Check Names from Global Address List (GAL)
Posted By:
Mike
One of my favorite features of outlook is hitting ALT-K when I type in names of co-workers in the TO list and have them automatically resolved for me by outlook. In outlook 2007, by default, it only resolves against my contacts list. I find this to be almost useful as I tend to store my contacts in my personal folders or leave them for later in Suggested Contacts. So when I went looking for it in tools -> options, of course it wasn't there anymore. After googling the hell out of this, I finally gave up, and then I found it.
Hidden deep on the UI, if you open the Global Address List, then click Tools -> Options, you're brought to the magical land where this can be set. Below where it says "When sending mail, check names using these address lists in the following order:", hit the Add button. Just below all the default selections is the Global Address List. Voila. Auto-name resolution from the GAL.
10/16/2007 12:37:43 AM
ce suo zai na lo
Posted By:
Mike
means Where's the bathroom in Chinese.
8/24/2007 6:17:23 PM
FLASH AS3 - Add a Bitmap from the library
Posted By:
Mike
Assume a Bitmap called Background1 exists in the library. The Library object functions as a BitmapData object for the sake of methods/parameters you can use in creating and manipulating it.
var bgimage:Background1 = new Background1(100,200);
var bg:Bitmap = new Bitmap(bgimage);
addChild(bg);