•  
  •  
  •  
 

Browse by Tags

All Tags » .NET
Showing page 1 of 7 (68 total posts)
  • VerCache Madness with .NET ActiveX Controls

    About a year ago I was working on building our DotTwain ActiveX control and wrote two articles on some useful tips that I discovered.  Since that time, I’ve seen a problem on a few customer computers where, after upgrading once, the control would never run.  Instead, it would just try to reinstall after every page load. After much ...
    Posted to Rick Minerich's Development Wonderland (Weblog) by RickM on July 13, 2010
  • The Six Pillars of MPI

    Introduction: The Message Passing interface (MPI) provides a standard way to distribute functions/objects/data across a cluster of systems -- whether embarrassingly parallel, or something more robust.  It’s an amazingly simple api to get started with, though working out how to send and receive the messages in the right order can get a ...
    Posted to Insert Quality Here (Weblog) by ascarb on October 22, 2009
  • Code Camp 12: Boston – Why F#?

    A couple of months ago I was talking to Lou Franco, the head of our Software Engineering department and fellow functional programming enthusiast, about the possibility of using F# for projects in the future.  Being business minded, he replied that he would need a compelling reason to bring F# on board.  This presentation is dedicated to ...
    Posted to Rick Minerich's Development Wonderland (Weblog) by RickM on October 16, 2009
  • System.Drawing Round-Trip PixelFormat Stability

    If you follow me on twitter, you know that I am no fan of the System.Drawing namespace.  It’s a rush job thinly wrapped layer on top of GDI+.  A great deal is only partially implemented and there is quite a lot of undocumented behavior.  Today I hope to help a bit with this problem by running some tests on System.Drawing.dll ...
    Posted to Rick Minerich's Development Wonderland (Weblog) by RickM on October 7, 2009
  • Detecting SearchServer (and other services) in SharePoint farm

    Jake and I just got into an interesting problem while working on search functions for VizitSP. My code was using types from Microsoft.Office.Server.Search, which is not available if SearchServer is not installed, so trying to access search functions results in “assembly cannot be loaded” exceptions. So, how do we detect the SearchServer in ...
    Posted to Dan Barvitsky (Weblog) by dbarvitsky on September 21, 2009
  • A word of praise for relevant error messages

    What do you think about the following code: byte[] privateParams, publicParams; using (var rsa = new System.Security.Cryptography.RSACryptoServiceProvider()) { privateParams = rsa.ExportCspBlob(true); publicParams = rsa.ExportCspBlob(false); } using ...
    Posted to Dan Barvitsky (Weblog) by dbarvitsky on August 29, 2009
  • ILMerge and ConfigurationSection

    Note to self: dearest Dan! If you happen to use ILMerge with an exe file, please make sure you check the app.config file. Why?  Well, suppose you have a custom settings section in your app.config, just like this: <configSections> <sectionGroup name="Atalasoft"> <!-- Converter service settings section: ...
    Posted to Dan Barvitsky (Weblog) by dbarvitsky on August 25, 2009
  • F# Discoveries This Week 08/09/2009

    This week we have RegEx Processing, Infinite Types, and some mathy code sample blogs I’ve stumbled upon.   Steve Horsfield has completed his F# Regular Expression Processor This post completes this mini-series on regular expression processing in F#.  You can find the complete source code here as well.  It has been a good ...
    Posted to Rick Minerich's Development Wonderland (Weblog) by RickM on August 9, 2009
  • Discoveries This Week 07/19/2009

    With the impending release of Visual Studio 2010, the F# Community continues to wind up.  This week we have finally gotten our F# User Group Videos up.  In addition, we also have a wide ranging selection of fresh F# content including Units of Measure, XML parsing, WPF Games and Pattern Matching.   New England F# User Group Talks ...
    Posted to Rick Minerich's Development Wonderland (Weblog) by RickM on July 19, 2009
  • Which formats does OpenOffice support?

    What can you extract from the following dialogue between Prospect and Employee? P: Which formats does <application name> support? E: Which one are you interested in? P: Err… Give me all you have! E: We support many formats, including… which one you were interested in again? One can, with certain level of confidence, ...
    Posted to Dan Barvitsky (Weblog) by dbarvitsky on July 9, 2009
1 2 3 4 5 Next > ... Last »