Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Colby Africa
This Blog
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
About
ASP.NET Session
Automation
C#
Code Gallery
CSharp Code Header Designer
IExpress
Learning SharePoint
Microsoft Project
MpFx
PSI
PSI Extensions
QuickPatch
Rant
SharePoint
SSDS
Troubleshooting
Walkthroughs
WinProj
WPF
Archives
May 2009 (1)
April 2009 (1)
March 2009 (2)
February 2009 (3)
January 2009 (17)
December 2008 (4)
November 2008 (1)
October 2008 (7)
EPM Blogs
The Microsoft Office Project Product Group
Brian Kennemer's Projectified
Christophe Fiessinger's Blog
Chris Boyd: Program Manager, Project Programmability
Browse by Tags
All Tags
»
C#
(RSS)
ASP.NET Session
CSharp Code Header Designer
IExpress
Microsoft Project
MpFx
QuickPatch
Sunday, January 18, 2009 5:07 AM
ASP.NET Session Monitor 1.0 Released to MSDN Code Gallery
A couple of years ago I was dealing with an ASP.NET application with session state issues. This happens, if you can believe it. I was flummoxed by the problem and the routine checks and configuration options didn’t seem to fix the problem
Posted by
coafrica
|
2 Comments
Filed under:
C#
,
ASP.NET Session
Thursday, January 15, 2009 8:17 PM
C# Code Header Designer 1.0 Released to MSDN Code Gallery
Recently I finished an engagement where the customer received the source code. When MCS does this, we typically add a header to each source file, which contains information related to the engagement. About two years ago, I wrote
Posted by
coafrica
|
4 Comments
Filed under:
C#
,
CSharp Code Header Designer
Sunday, January 11, 2009 7:23 PM
Microsoft Project mpFx Client – Application Architecture: IMpfxClientPlugin
I needed a test harness for mpFx, so I built a simple WinForms application and wrote little utilities that used the primary libraries. As the feature set grew, the test harness started to become unwieldy and frankly not very pretty. This fact, coupled
Posted by
coafrica
|
1 Comments
Filed under:
C#
,
Microsoft Project
,
MpFx
Sunday, December 14, 2008 2:20 AM
Updated GUI For IExpress
There is a neat little tool called IExpress that has been around for a long time. IExpress creates a self-extracting EXE from a specified set of files. The resultant executable can be configured to prompt the user (“Are you sure you
Posted by
coafrica
|
1 Comments
Filed under:
C#
,
IExpress
,
QuickPatch
Tuesday, October 28, 2008 4:51 PM
Using a Separate Application Domain to Test for Implemented Interfaces
Sometimes you need to load an assembly for use or inspection. The problem is that loading an assembly is permanent for the lifetime of an application domain. Sometimes this is acceptable and sometimes it is not. Mike Shughrue and
Posted by
coafrica
|
1 Comments
Filed under:
C#
Monday, October 20, 2008 8:07 PM
Interface Type Param Arrays to Operate on Many Objects
Here is an example: 1: private void Dispose( params IDisposable[] disposableObjects) 2: { 3: foreach (IDisposable disposableObject in disposableObjects) 4: { 5: if (disposableObject != null ) 6: { 7: disposableObject.Dispose(); 8: } 9: } 10: } I have
Posted by
coafrica
|
0 Comments
Filed under:
C#