Archive

Archive for the ‘Software’ Category

Windows Phone 7: Hope has come

February 16th, 2010
Daniel Marbach

Finally the latest news about Windows Phone 7 is arrived and it seems that Microsoft has ultimately learned its lessons. Windows Phone 7 has a totally news concept regarding what we are used to have with the Windows Mobile editions. But the Windows Phone 7 concept is not only new for “Microsoftish” phones it is also totally new for all smart phone operating systems on the market (including iPhone).

read more

 

Mobile, Software , ,

Get PartCover Running On x64 Windows

October 15th, 2009
Urs Enzler

PartCover is an open source coverage tool. Unfortunately, the current release does not run on a 64bit OS out of the box. The reason is that PartCover uses a 32bit COM component to determine coverage and that a 64bit process cannot load a 32bit COM component. read more

 

.NET, Software , , ,

Windows Mobile 6.5 officially released

October 6th, 2009
Daniel Marbach

Today is the official release day of Windows Mobile 6.5. The new release of Windows Mobile 6.5 is claimed to be much smoother in terms of finger friendly navigation in all parts of the operating system including the today screen and windows explorer but also in terms of stability and performance. The famous iPhone lock and unlock slider is now available on Windows Mobile 6.5 (why reinventing the wheel ;) ? ). The internet explorer 6 is integrated into the operating system and offers flash support, zoom toolbar and much more.

For developers it might be interesting that it’s easily possible to create your own individual design with the Theme Generator. Microsoft now offers an easy to use synchronization service which allows to synchronize all kinds of data from the mobile device to the online services and back. This service is called myPhone Online Service. Similar to the Apple Store there is now a market place for windows phone applications reachable under http://marketplace.windowsphone.com.

ROM upgrades for various phones should be available soon on the manufacturers websites. Stay tuned!

 

Mobile, Software ,

Custom StyleCop Rules – Part II

September 21st, 2009
Thomas

In my first post (link) I’ve explained what StyleCop is and how you can start with your own StyleCop rules. We will now dig a little bit deeper into the jungle of StyleCop….
read more

 

.NET, Software, Sourceanalysis , , ,

Change the path SQL 2008 Server Database

August 30th, 2009
konrad.dambeck

In the most cases there are benefits when all data (log and db) files are on the network storage. Think off the benefit in terms of performance and backup. The Install wizard of Microsoft SQL Server 2008 shows only the option to change the path of the temporary database. In this guide I show you how to move the databases. Please keep in mind to create a backup of your db’s before starting. I know backup is only for hot shower takers, gym bag losers and armpit hair blow-dryers;-). On my test server the path looks like: read more

 

Administration, Software , , , , ,

Mocking Adventures with NMock2: Stubs Advanced

August 11th, 2009
Urs Enzler

NMock2 is a library for assisting test driven development of .NET code by providing a dynamic mock object creation framework.

In my last post on NMock2, I introduced the new Stub feature of NMock2 and its basic usage. In the second part, we are going to have a look at the advanced possibilities of the Stub mock style:

  • Define Mock Style Of Nested Mocks
  • Define Default Values

read more

 

.NET, Software, Testing, Uncategorized , , , ,

NMock2 Documentation Now On MediaWiki

August 10th, 2009
Urs Enzler

Due to changes on sourceforge.net and its hosted applications, the documentation of NMock2 – a library for assisting test driven development of .NET code by providing a dynamic Mock Object framework for .NET interfaces and classes (virtual and abstract members of classes) – has been moved from WikiSpaces to MediaWiki.

You can check it out at http://sourceforge.net/apps/mediawiki/nmock2/index.php?title=Main_Page

 

.NET, Announcement, Software, Uncategorized , , , ,

Mocking Adventures with NMock2: Stubs

August 2nd, 2009
Urs Enzler

NMock2 is a library for assisting test driven development of .NET code by providing a dynamic mock object creation framework.

In this article, I’m going to show you the basics of the new stub feature in NMock2. Note that this feature is currently only available on the development trunk in the subversion repository at https://nmock2.svn.sourceforge.net/svnroot/nmock2/trunk. Therefore, the features discussed here may change for the next official release.

Stubs can be used in scenarios where you have to test an instance of a class (let’s call this object testee) and this testee makes calls to another object (dependency) but you simply do not care what the testee calls on the dependency because it is not relevant for your test case.

Stubs will simply ignore any calls to it and if the call has a return value then the stub provides a default value.

read more

 

.NET, Software, Testing , , , , , ,

Windows 7 features videos

July 25th, 2009
Daniel Marbach

As some of you might already know Windows 7 is now released for manufacturing and will soon be available. Eric Ligman provides on the Microsoft SMB Community Blog a nice set of cool videos about the new features of Windows 7 such as User State Migration Tool, BranchCache, Direct Access, User Account Control (UAC) and many more. I recommend his blog post for everyone who wants a deeper insight into the exciting features of Windows 7.

http://blogs.msdn.com/mssmallbiz/archive/2009/07/23/9846705.aspx

 

Administration, Software , ,

Custom StyleCop Rules

July 19th, 2009
Thomas

Microsoft’s StyleCop is a code style and consistency analysis tool for C#. The tool integrates into the Visual Studio IDE, or can be run on the command line. StyleCop ships with a default set of rules enforcing common style guidelines.

This article describes how to write custom StyleCop rules.

read more

 

.NET, Software, Sourceanalysis