To remove multiple records from the DataGridView, programmer need to write some line of code, code may be written in a button's click event that is outside of the DataGridView. The article shows about how to select multiple recor...
Tuesday, December 24, 2013
Tuesday, November 5, 2013
How to Provide Search Feature in DataGridView: Windows Forms
We have successfully bind our datagridview with a list of items discussed in earlier post. What if there are many records in our list and datagridview is looking full of records. In this case, user can’t even search any single re...
Friday, November 1, 2013
How to Access Record by DataGridViewButton: Windows Forms
I have created a DataGridViewButton for each particular record of DataGridView, as in my earlier post. Adding a button is not sufficient in programming, it should perform some functions when clicked, so we have to generate its cl...
Thursday, October 31, 2013
How to Add Commands with Binding in DataGridView: Windows Forms
After binding records with DataGridView, there may be some options to edit or to remove those records. To do these simple task we can provide either a button, which gets the selected record and perform operation, or we can provid...
How to Bind ComboBox with List of Items: C#
A list of items is used to store some temporary records, used in the program and do some operations like sorting, grouping and etc. In the previous post we have created a list and bind that list to the datagridview, using its Dat...
Saturday, October 26, 2013
How to Get Selected Fields from List Using LINQ: C#
When we bind a list with a control like datagridview, comboBox or listbox, then it will bind all the fields related to list. I have created a list of student with multiple fields i.e. Name, age, city and DOB. Now in this article ...
How to Bind DataGridView to List Of Items: C#
Datagridview is the common control to bind our records in windows forms. I have bound this datagridview to dataset and in this article I will bind a list of student class’s data. I will use the same student class as in my previou...
Friday, October 4, 2013
How to Edit Columns in SQL Server Binding: Windows Froms
When we bind the data grid view with SQL Server database, then it will show all the columns created in the table of database. According to our previous post we have displayed all the records of table, without writing a single lin...
Wednesday, September 25, 2013
How to Retrieve Data from SQL Database: Windows Forms
In my previous post, I have created a connection object and then get all the records from the database table. What if we want to bind our datagridview without writing a single line of code? So in this article we will do something...
Thursday, September 19, 2013
How to Bind DataGridView with DataSet in Windows Forms: ADO.NET
In our previous post, I have described about the ways to bind datagridview in windows forms. The first way is to bind the datagridview with dataset and show the data of a table in the gridview. Here is the syntax of binding in c#...
Monday, September 16, 2013
How to Bind ComboBox with DataTable: WPF
DataTable is an object of ADO.NET library, which is used to store temporary data in tabular form in memory. When we are creating data table in code part, then we have to add some columns and have to add some rows.
We have learnt...
Sunday, September 8, 2013
How to Bind ListView with string List: WPF
As we all know the listview is inherited class of listbox and have almost all the properties of listbox. We have learnt listbox binding with string list in our earlier post. In this article we bind the listview with the same stri...
Saturday, September 7, 2013
Bind ListView Control with Grid Resource: WPF
Grid resource provides a way to reuse the objects and values by other controllers, as we studied in previous posts. In this article we will bind the listview with Grid resource defined in XAML code:
<Grid.Resources>
...
Friday, September 6, 2013
How to Bind ComboBox with List: WPF
The same procedure will be follow up as in listbox binding. In the XAML define a combobox with some common properties you want as height, width and etc. Don’t forget the name property, because it will be used to assign itemsSourc...
How to Bind ListBox with List: WPF
According to the previous post we don’t need to define the items first. Means the source having the items to be bind with listbox. In the XAML define a listbox with some common properties you want as height, width and etc. Don’t ...
How to Bind ListBox with XAML Grid Resource: WPF
In the previous article, we have learnt about the listbox and some of the properties of listbox. Resources provide a way to reuse the objects and values by other controllers in the code. As we created a grid resource in the combo...
Tuesday, September 3, 2013
Bind ComboBox Control With Grid Resource: WPF
In my previous post, I have wrote about the combo box control and add some string items. In this article I will add a grid source and then bind that source to combo box control with some easy steps.
By default a grid is placed i...
Saturday, June 22, 2013
How to change password in windows forms
In context of computer
system, once another person acquire your password he/she can use your computer.
They can even use your computer to attack another machines. If he/she do this,
it will look like you do anything.
The same c...
Thursday, June 13, 2013
How to bind TabControl with database in windows forms
TabControl
manages and displays a related collection of tabs that can contain controls and
components. We can add multiple pages in a single form and each page can
contain its individual set of controls that can displayed when t...
Saturday, June 8, 2013
How to bind CheckedListBox using database In windows forms
CheckedListBox
displays a list of items with a checkbox on the left side of each item. The user
can select one or more items by simply place a checkmark to one or more items. To
access those checked items we can use either Check...