TDataSetInspector displays and manipulates records from a dataset in an
Object Inspector alike control.

Put a TDataSetInspector object on a form to display and edit the records from
a database table or query. Applications can use the dataset inspector to
insert, delete, or edit data in the database, or simply to display it.
DataSetInspector provides standard editor for changing content of database and
smart Memo and Graphic editors called just like usual property editors in
Object Inspector.

In runtime the following keys are available in DataSetInspector
(plus all standard keys available in Object Inspector):

Esc        Cancels changes
Insert     Inserts new record into the dataset
Ctrl+Del   Deletes current record from the dataset
Ctrl+Up    Selects the previous record in the dataset
Ctrl+Down  Selects the next record in the dataset
Ctrl+PgUp  Selects the first record in the dataset
Ctrl+PgDn  Selects the last record in the dataset

Look into EXAMPLES\DBINSP to see how DataSet Inspector can be used in your
application.