category

home / developersection / category

Resizing Image in C#
c# 06-Aug-2011
Resizing Image in C#

In this article, we learn how to resize an image in c#. To complete this task firstly we design a user interface for resize image which is a combination of

Nullable Variables Null Colecasing Operator
c# 15-Feb-2011
Nullable Variables Null Colecasing Operator

Nullable Variable is those variables in which the initial value will null and the value will be initialize after quite some time. With the help of nullable variable operator we can declare any type of variable value as null.

How to Register Assembly in GAC?
c# 14-Feb-2011
How to Register Assembly in GAC?

Step:  Open Visual Studio Command Prompt Type gacutil/i  [Drive_Name]:\[Folder_Name]\[Assembly_Name].dllAfter following these steps you will get a me

Creating Web Browser Application in Windows Forms
c# 14-Feb-2011
Creating Web Browser Application in Windows Forms

First, you have to add a namespace in your existing namespaces that will be System.Net which will provide the functionality to represent the networking related facilities in our programming

System Process in C#
c# 11-Feb-2011
System Process in C#

What is System Process? The Process component is useful to obtain the list of the processes that are running on the system.With the help of Process c

Cell formatting of DataGridView in .NET
c# 11-Feb-2011
Cell formatting of DataGridView in .NET

What is DataGridView?Where The DataGridView control is used for displaying the data from the SQL database. Data will display in a table from the dat

What is Strong Name in Assembly?
c# 11-Feb-2011
What is Strong Name in Assembly?

A Strong Name consists of the assembly's identity—its simple text name, version number, and culture information (if provided)—plus a public key and a digital signature. Strong Name is similar to GUID (It is unique in space and time).

Creating Globalized Connection String in .Net Framework using Attached Database
c# 11-Feb-2011
Creating Globalized Connection String in .Net Framework using Attached Database

Globalized connection string meant for that if you are designing a vast application that having so many windows forms and u need to control all the application using an app.config file. So here is just a demo to create a Globalized connection string

How to use Tree View Control in C#
c# 27-Jan-2011
How to use Tree View Control in C#

Windows forms Tree View control helps to represent data in hierarchical format. Whenever you want to display data in the format of parent child relationship or in hierarchical format then we can use concept of tree view control. The best example of t

The PrintPreviewDialog and PrintDialog Control in C#.Net
c# 25-Jan-2011
The PrintPreviewDialog and PrintDialog Control in C#.Net

PrintDocument PrintPreviewDialog and PrintDialog Control in C#.NetWhere, The PrintDialogControls are used to open the Windows Print Dialog. The Prin

DataRepeater Control in C#.Net
c# 24-Jan-2011
DataRepeater Control in C#.Net

The DataRepeater control allows you to display rows of your data in a scrollable container giving you more flexibility and customization than standard grid controls.

DataGridView Control in C#.Net
c# 24-Jan-2011
DataGridView Control in C#.Net

The DataGridView control enables you to connect to a database and display data in tabular format. How to use DataGridView ControlDrag and drop DataG