Subject Re: [IBO] IB-Default Actions
Author Nando Dessena
Hi Geoff,
just a note (completely OT, I admit):

> if DataSource.Dataset is TIB_BDataset then
> with DataSource.Dataset as TIB_BDataset do

this is overkill; once you've done the "is" check you can safely
hardcast.

if DataSource.Dataset is TIB_BDataset then
with TIB_Dataset(DataSource.Dataset) do

Ciao
--
____
_/\/ando