max entries:
2008-11-09
More Effective C#Bill Wagner's new "More Effective C#" Item 1 in his book has inspired me to put togther a page on considerations for CSharpClassDesign. Its a work in progress. 2008-11-07
Mojave - next steps with Commerce ServerMicrosoft has made some announcments for their next steps and commitment to Commerce Server. You can see the PDC presentation online here. 2008-10-18
Ann Arbor Day of .NETI'm currently attending .NET of .NET in Ann Arbor. I'll be keeping notes here on my blog through out the day.
2008-10-03
MS Patterns and Practices Releases the RepositoryFactory Guidance PackageMS has released a new patterns and practices guidance package for data access. It can be found on code plex here: http://www.codeplex.com/RepositoryFactory David Hayen has a few web casts on this. You can find these on his web site [here http://www.pnpguidance.net/Post/NewGuidancePackageMicrosoftDataAccessTechnologies.aspx]. I'm in the process of reviewing this. My initial look suggests it is promising. I can't wait to see how similar it is the the data access type of projects I am building using the MS Enterprise Library's Unit block IOC container, and how well it conforms to the Dependency Inversion Principle. 2008-09-17
MS Word Paste without formattingOffice 2007 lost the Control-Shift-V feature where you can paste without formatting and retain the formatting of the surrounding context. You can do this via the paste menu, but its just too damn many "clicks". Record yourself macro and assign it this hotkey. When you are done it should look like the code below. I found that when recoding the macro Word doesn't select the right parameter so you have to force the wdFormatText by fixing up the macro after the fact. Sub PasteUnformatted()
'
' PasteUnformatted Macro
'
Selection.PasteAndFormat (wdFormatText)
End Sub
|
|
has been released and is now available both