category

home / developersection / category

HOW TO CREATE DLL AND USING THEM IN C#
c# 15-Sep-2010
HOW TO CREATE DLL AND USING THEM IN C#

We have to create DLL with the help of Class Library, and call in a program, here are the steps to create and how it works with the help of an example.

LISTBOX APPLICATION IN C#
c# 12-Sep-2010
LISTBOX APPLICATION IN C#

In this Application we have to take two listbox1 and listbox2 and four buttons in the form as shown below in the application, our motive is to transfer all the records from ListBox1 to ListBox2 by pressing (>>) and vice versa (<<), and we can transfe

WORKING ON MDI (MULTI DOCUMENT INTERFACE)
c# 11-Sep-2010
WORKING ON MDI (MULTI DOCUMENT INTERFACE)

In this Application we have to show the working of MDI Form and their various Properties with the help of an example. Choose a New Project and Name as MDISample, Next Right Click on the right hand side of MDISample and Click on ADD Option then Click

RUNNING PROCESS IN C#
c# 08-Sep-2010
RUNNING PROCESS IN C#

In this project we are checking number of process which is running inside the task manager and also we are showing how to kill Selected Process from t

HOW TO USE COLOR DIALOG BOX IN C#
c# 06-Sep-2010
HOW TO USE COLOR DIALOG BOX IN C#

Program states that in one form if we want to place one button, while clicking on the button next form is appear with change color and having a display button like change color in a new window button,

How to use TreeView Control and WebBrowser Control in CSharp .NET
c# 02-Aug-2010
How to use TreeView Control and WebBrowser Control in CSharp .NET

/* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-st

Tool Tip in C Sharp
c# 02-Aug-2010
Tool Tip in C Sharp

/* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-st

How to split form background color in C Sharp
c# 02-Aug-2010
How to split form background color in C Sharp

How to split form background color in C SharpThis will change Windows form back color according to Button Click. Controls NameButton Red: btnRedBlu

How to populate records in ComboBox
c# 01-Aug-2010
How to populate records in ComboBox

To populate ComboBox we have to add the values of DataRows to it

HOW TO PASS VALUE FROM ONE FORM TO ANOTHER FORM
c# 01-Aug-2010
HOW TO PASS VALUE FROM ONE FORM TO ANOTHER FORM

To pass value from one form to another we have to add a property in the form from which we want to send data. To set property we have to write the following code. Let us say this is form2.

Timer in C Sharp
c# 31-Jul-2010
Timer in C Sharp

The Timer control allows you to set a time interval to peridically execute an event at a specified interval. It is useful when you want to execute certain applications after a certain interval.

this keyword in CSharp .NET
c# 31-Jul-2010
this keyword in CSharp .NET

The ‘this’ keyword refers to the current instance of the class. ‘this’ keyword is used when we want to track the instance, which is invoked to perform some calculation or further processing relating to that instance.