In this article, I will explain you, How to retrieve data from two joined table using single LINQ Query. Here we have two joined table in mentioned diagram. Both tables are joined from dept_no, so if you want to retrieve record ...
Wednesday, February 10, 2016
Sunday, July 21, 2013
Filter data in datagridview according to combobox in c#
As we have previously studied that datagridview is used for display rows and columns of data in a grid format in windows form. Mostly data are previously defined which are to be shown in datagridview. Sometimes we have to change...
Saturday, June 29, 2013
Find a control in windows forms
When we drag-n-drop controls in our designer file then we can easily access those controls in our code file directly by its name. But when we dynamically add some controls either in constructor or in load event of form then we ca...
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 20, 2013
How to make login control in windows forms
Sometimes anonymous user can
harm our application and can change the data stored in our application. That’s
why, it is often necessary to permit only authorized users to use our
application. There is no predefined method
to do t...
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...
Thursday, June 6, 2013
How to bind TreeView with database table in c# Windows Form
TreeView displays a
hierarchical collection of labelled items to the user that optionally contains
an image. Microsoft is also using treeview in left side of windows explorer
from the time of windows 98 till now.
It is ver...