tutorial

How to Bind Data to the Windows Forms DataGridView Control

Submitted by admin on
[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

Submitted by admin on
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

Submitted by admin on

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

Submitted by admin on

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.

Inheritance

Submitted by admin on

What is inheritance?

Inheritance is a process which allows inheriting the methods and properties of parent or super class.

OR

Deriving an object from an existing class (super class)

Classes in Java

Submitted by admin on

Class

In Object Oriented programming, “class is a blue print that is used to create objects”
A class is a collection of things that share common attributes like class of students.

Some characteristic of a class