home / developersection / tag
/* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-st
This calculator can perform all the basic mathematical operations, like add, subtract, multiply and divide. It has a text box with displays input and output.
Here I’ve tried to demonstrate how to create controls at runtime in C#.Net. To create controls at runtime we have to create object of each control and add them to form.
How to Change Background Color of Tab Control in C SharpTo change the back color of the Tab Control page, we have to set the back color property of
To add CheckBox in DataGridView we have to goto ‘columns’ property of DataGrid.After clicking on browse button a Edit Column window will open.Click
To add button in DataGridView we have write the following code.DataGridViewButtonColumn btnDGV= newDataGridViewButtonColumn //creating object of da
Hashtable in C# represents a collection of key/value pairs which maps keys to value. Any non-null object can be used as a key but a value can. We can retrieve items from hashTable to provide the key. Both keys and values are Objects.
When we want to show icon of our application in System tray then we use notify Icon control from tool bar in our application.
To create MDI form we have to open a form then we have to set the property ‘IsMdiContainer’ of the form to ‘true’. The form will look like this.this
First of all we have to design a table in database in order to store the user and password of the entire user who can log on to our application having at least two entities ‘username’ and ‘password’ , here my database name is ‘Employee’ and table nam
Here I’m going to demonstrate how to validate date entered as string. All we have to do is to split the date string at’/’. The date provided should be in MM/DD/YYYY format.