Using SQL Server 2012 LocalDb in VS11 and VS2010 for testing.

2 Comments

To create high quality LOB applications unit tests and integration tests are mandatory. You want to run these integration tests and unit tests on your continuous integration server. The problem with integration tests or testing

Developer License Windows 8 consumer preview

0 Comments

Well I better start start pushing my new Windows 8 apps to the windows store Created a new developer license at 16-3-2012 and now I can create apps until 15-04-2012.

How to convert a bitmap into a 1bpp monochrome TIFF in C#

3 Comments

If you want to convert a bitmap into a TIFF, than then you can use the code: using (System.Drawing.Bitmap sourceBitmap = new System.Drawing.Bitmap(@"C:\Temp\Source.bmp")) { string outputFileName = @"C:\Temp\Destination.tiff"; if (System.IO.File.Exists(outputFileName)) { System.IO.File.Delete(outputFileName); } sourceBitmap.Save(outputFileName, System.Drawing.Imaging.ImageFormat.Tiff);