Scott Dorman

ephemeral segment

  Home  |   Contact  |   Syndication    |   Login
  608 Posts | 11 Stories | 900 Comments | 51 Trackbacks

News


Post Categories

Image Galleries


Microsoft Store


Creative Commons License



Locations of visitors to this page

Subscribers to this feed

TwitterCounter for @sdorman

View blog authority

Add to Technorati Favorites

Windows Live Alerts

AddThis Social Bookmark Button

LinkedIn profile

Community Credit profile

The Code Project

Follow me on Twitter

Get Free Shots from Snap.com

Community Credit Hall of Fame

Get Feedghost

Xobni outlook add-in for your inbox



Support This Site

Tag Cloud


Article Categories

Archives

Post Categories

Image Galleries

CodeProject

Posts that will be republished through Code Project
There have been several questions on StackOverflow about how to determine if a type is defined in the .NET Framework or is a third-party or custom type. Based on the answers provided to these questions, this can be accomplished using some reflection to retrieve the public key token of the assembly in which the type is defined and compare it to a public key token known to be used by Microsoft to sign the .NET Framework assemblies. Update: Based on some additional research and a Twitter conversation ......

Windows 7 includes a lot of improvements in the Windows Explorer. Most of them are fairly obvious, but the new preview pane is likely to go unnoticed (or passed over as the same as Vista’s preview pane) by a lot of people. The new preview pane supports a much wider range of formats than the Windows XP and Windows Vista preview pane did, including the ability to preview HTML, text files, XML files, images, videos, music, and WordPad files without any additional software installed. If you have Microsoft ......

Earlier I talked about the new Windows 7 Federated Search capabilities and mentioned that you can create your own Search connectors. Since then, I’ve been busy creating some search connector description files for the following sites: Geekswithblogs Live Search MSDN MSDN Blogs The Code Project Channel 9 Twitter All of these search connector descriptions are available from my SkyDrive Search Connectors folder. Technorati Tags: Windows 7,Federated Search,OpenSearch ......

Every so often a question comes up about how Visual Studio, the .NET Framework, and a .NET programming language relate to each other. Mostly, these questions have to do with versions. The reality is that these are actually three different “products” that are versioned independently of each other but are related. Looking at how Visual Studio, the .NET Framework version, and the CLR versions relate to each other results in the following: Visual Studio CLR .NET Framework Visual Studio .NET (Ranier) ......

Almost two years ago, I wrote about a Visual Studio macro that allows you to change the Target Framework version of all projects in a solution. If you don’t know, the Target Framework version is what tells the compiler which version of the .NET Framework to compile against (more information is available here) and can be set to one of the following values: .NET Framework 2.0 .NET Framework 3.0 .NET Framework 3.5 .NET Framework 3.5 Client Profile .NET Framework 4.0 .NET Framework 4.0 Client Profile ......

Attribute programming has a lot of benefits and, when done correctly, can greatly simplify the amount of code that you need to write. One drawback to using attributes is that the code required to retrieve a custom attribute from a type is a bit cumbersome and is very repetitious. Given a type, the simplest way to retrieve a custom attribute is code like CustomAttribute attribute = Attribute.GetCustomAttribut... typeof(CustomAttribute), true) as CustomAttribute; While this is simple ......

I’m still waiting for an “official” announcement, but if you are an MSDN subscriber you will be able to download Visual Studio 2010 Beta 1 later today (May 18), probably around 12:00 PM (PST). If you aren’t an MSDN subscriber, you will be able to download Beta 1 on May 20 through Microsoft Downloads. Technorati Tags: Visual Studio 2010 ......

I’ve been running Windows 7 RC for a little over a week now and can’t imagine going back to Vista at this point. I decided to start with a fresh install of Windows 7, so I’ve been in the process of reinstalling all of my applications and cleaning up my disk drives. In the process, I went searching to see if there are any interesting Windows 7 power toys or tricks available. While I didn’t find any power toys, I did discover that all of the Windows Vista tricks are still available on Windows 7. Tim ......