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...
Saturday, June 22, 2013
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...
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...
How to bind GridView with search results in c# Windows Forms
There
are many cases in which user want to search some records in database that are
satisfying a condition and bind them to gridview. So I am writing this post to
bind a gridview with search option and in else case all the data ...