Thursday, May 4, 2017

Monday, September 19, 2016

Friday, February 12, 2016

Add this short cut to Visual Studio

Tip: Leave Visual Studio default settings in place so minimize to remember stuff. (for other systems and new installations)

Tip: Add the keyboard shortcut Ctrl+R, Ctrl+S to 'Remove and Sort Usings'.


Friday, July 4, 2014

Tip for searching file in Windows Explorer

Tip for searching file in Windows ExplorerIn the Windows Explorer you can search for files, but when a file contains a point this will also be returned.

Example
  • Company.Feature1.dll
  • Company.Feature2.dll
  • Company.dll
  • Company.Feature3.dll
Enter in the search panel Company.dll

The results are
  • Company.Feature1.dll
  • Company.Feature2.dll
  • Company.dll
  • Company.Feature3.dll
But I want only the Company.dll results.

So enter in the search panel filename:CircleSoftware.dll

The results are:
  • Company.dll

Visual Studio extensions which I use


SlowCheetah - XML Transforms


CssCop - FxCop for Stylesheets

Web Essentials

More extensions see:
http://madskristensen.net/post/visual-studio-extensions-for-web-developers









Several use full links


 

Software Management 

Tuesday, May 27, 2014

Some support for load and web tests in Visual Studio



Make JavaScript and CSS External

Using external files generally produces faster pages because the JavaScript and CSS files are cached by the browser. Inline JavaScript and CSS increases the HTML document size but reduces the number of HTTP requests. With cached external files, the size of the HTML is kept small without increasing the number of HTTP requests thus improving the performance.

Put Javascript file at the end of the document

Unlike StyleSheets, it is better to place (java)scripts to the end of the document. Progressive rendering is blocked until all StyleSheets have been downloaded. Scripts cause progressive rendering to stop for all content below the script until it is fully loaded. Moreover, while downloading a script, browser does not start any other component downloads, even on different hostnames.
So, always have scripts at the end of the document.

Discovering the BlogBooker website for creating a pdf of my Blog

With the help the website BlogBooker a can easily create a pdf file from my Blog. So I can print, mail, backup and transfer my complete Blog as a snapshot. Thanks...

Thursday, October 24, 2013

Remove empty lines in text using Visual Studio.

When you want to remove all the empty lines in a text in Visual Studio, you can use regular expressions. In this article are the instructions how you can accomplish this.

Sunday, July 28, 2013

Test Automation Guidance

A link for 'Test Automation Guidance' to set up coded ui projects.

.NET Framework 4.5 (Obsolete and New)

On the site of MSDN there is a list with the obsolete and new things in .NET Framework 4.5

Default comment for events

This post contains a default comment for the params for events.

             /// The object that caused the event.
             /// The event arguments for the event.

A default comment is not very good, but it is easy to use it. When you can be more precise in the comment of an event you have to do this!.

Friday, July 5, 2013

Some tools for the solution file of a Visual Studio Solution

In the following article Tools for sln file visual studio solution file there are some utilities or useful information for the solution files of a Visual Studio solution. A must to know for each web developer!

Saturday, January 14, 2012

Testing with Visual Studio 2010

The last time I am discovering more and more the test features of Visual Studio 2010. In this blog item I discuss or mention some of these features.

It is possible to execute a code analysis after each developer build. You can enable (or disable) this in the properties of the project; see tab Code Analysis. There are several rules you can configure (globalization rules, basic correctness or of course you can customize these)
It is also possible to measure the quality of the code, with Code Metrics. Code metrics gives some overview in maintanability and complexibility. The code metrics can be used to give a progress overview in a refactor proces to the management, simply export this data to Excel. The index for maintability, complexibility, depth, code coupling and lines of code.
With the Test Impact Analysis feature Visual Studio shows you the tests which are affected on the code change. (use the Test Impace Window)
There are several tests; Code UI Test, Load Test and Web Performance test. You can also use profiling for your application. You can select CPU Samples, Instrucmentation and compare the results and find the method or class which is the most expensive.