headermask image

header image

category archive listing Category Archives: Dotnet

Web Based Applications in DotNet

Microsoft has recently launched the VS2008 with various features and provides efficient ways to develop web applications. In VS2008 the design view and code view can be split into two separate windows. The user can see both the windows. When you move your mouse pointer over any text box or any label it shows the [...]

MICROSOFT BLEND2

Microsoft Expression BLEND2 is a new design tool for designers to provide a rich, authentic, professional way of designing. Designing at it’s best is Blend. It can be used for applications such as Windows Applications using Framework 3.0, Framework 3.5, Web Applications with Microsoft Silver Light.
Expression is a scalable interface built using the Windows Presentation [...]

Visual Studio 2005 and 2008 Tool to Maintain History

Visual Studio 2005 and 2008 has a add-on which can maintain a local file History like Eclipse or VSS, where you can view, delete, maintain different version of local file. This add-on can be found in IDE of visual studio once you install it. So once you save a file a local history is maintained. [...]

.Net framework 3.5

.Net Framework 3.5 is a framework that supports building of rich client application, web application, web services and much more. The integral part of this framework is Class Libraries and common language run time.  It supports developing mobile applications by Windows Communication Foundation. Has some advanced features such as API’s newly added, LINQ, XLINQ, enhanced [...]

MIcrosoft FXCop

Many of the developers in IT industry would not follow their coding standards in .Net if they are not aware of Microsoft FXCop. FxCop is a tool to analyze the code that checks .NET managed code assemblies for conformance to the Microsoft .NET Framework Design. It can inspect assemblies for more than 200 defects which [...]

Sample Command Lines

Sample Command Lines
Compiles testFile.cs producing testFile.exe:
csc testFile.cs
Compiles testFile.cs producing testFile.dll:
csc /target:library testFile.cs
Compiles testFile.cs and creates Me.exe:
csc /out: Me.exe testFile.cs
Command to Compile all the C# files in the current directory, defines the DEBUG symbol with optimizations on. The output is testFile.exe:
csc /define: DEBUG /optimize /out: testFile.exe *.cs
Command to Compile all of the C# files in the [...]

Ncover

Ncover is tool to test the coverage of the code. Code coverage is a software metrics which shows how many lines of your code gets executed, how much the source code of our code has been tested
Some terms associated to code coverage are:
1. Unit Testing
Unit Testing confirms that our program for a particular functionality [...]

Adobe Printing

There are command line options that can be used to print a Pdf document from an application. The AcroRd32.exe can be started by a Diagnostic process specifying the path of the Pdf document.
AcroRd32.exe /p /n “pathname” ————->To start a separate instance of Acrobat Reader with a Print Dialog where /n denotes the new instance.
AcroRd32.exe [...]