tutorial

How to Bind Data to the Windows Forms DataGridView Control

[inline:DataGridView Control.jpg=How to Bind Data to the Windows Forms Datagridview Control] The DataGridView control provides a customizable table for displaying data. The DataGridView class allows customization of cells, rows, columns, and borders through the use of properties such as DefaultCellStyle, ColumnHeadersDefaultCellStyle, CellBorderStyle, and GridColor. (Source: MSDN)

Video Training

Youtube.com is the number one website that host videos on the internet. If you use this website properly, you will benefit from it to make yourself more productive because of the free videos that the other users are sharing like k alliance. When I visited this users profile I saw a lot of video tutorial on different topics like: Cisco CCNA Security Training Video - Using Cisco SDM – Good start if

Exception Handling

What is an Exception?

Definition:

“When an unusual, irregular, abnormal or nonstandard condition arises in a sequence of code at run time this phenomenon is referred as Exception handling

An exception is a runtime error.

In Object Oriented, an exception is an object that is used to describes an exceptional condition that has occurred in a piece of code.

Interfaces

Definition:

In java programming language, an interface is an abstract, conceptual or concrete type that is used to specify an interface.

How to use an interface:

  • By using the key word interface, we can fully abstract a class interface from its implementation.

It means that, using interface, we can specify what a class must do, but not how it does it.