Dot Net Tips & Tricks , C# (C Sharp)Tips & Tricks

Visual Studio .NET Tips and Tricks, VB.NET Code Samples, C# Code Snippets, ASP.NET Code Samples, .NET Tips and Tricks, C# Tips & Tricks, Visual Studio 2010, .NET Framework Code Samples, VB.NET Tips & Tricks

Wednesday, December 23, 2009

Check Multiple Instances of an Application using C#

›
How to check if multiple instances of the application are running using C# (.NET) Here is a simple code to check if multiple instances of cu...
1 comment:

Where are the .NET DLLs available in the system

›
.NET DLLs (3.0 and above)are available @ C:\Program Files\Reference Assemblies\Microsoft\Framework\v3 .5 Or C:\Windows\Microsoft.NET\Framewo...

Cannot implicitly convert type 'System.Diagnostics.Process[]' to 'System.Diagnostics.Process'

›
The compiler requires an explicit conversion. For example, you may need to cast an r-value to be the same type as an l-value. Or, you must ...

Cannot declare instance members in a static class

›
This error occurs if you declare a non-static member in a class that is declared static. It is not possible to create instances of static cl...

The type or namespace name 'Process' could not be found (are you missing a using directive or an assembly reference?)

›
Yes, the using directive is missing! using System.Diagnostics; Should solve the problem

How to check user input in C# (.NET) / VB.NET

›
How to parse user input using C# (.NET) Many times we do not get the anticipated input from the user (either as direct entry / through some ...
1 comment:
Saturday, June 13, 2009

How to mask the Password text in Textboxes (in VB.NET / C#)

›
It is simple to mask the characters entered in a textbox by setting the PasswordChar Property The same can be done using C# code as shown be...
8 comments:
‹
›
Home
View web version
Powered by Blogger.