I have several DBGrids, for each one I have created a procedure that should occur when the selected record is changed. So if the user doubleclicks the row, all this other stuff happens. I would also like to perform these actions if the user single clicks or scrolls through the dataset. I have tried:
procedure TDataMod.qryChargesAfterScroll(DataSet: TDataSet);
begin
Form_CaseInformation.DBGrid_ChargesDblClick(self);
end;
but it doesn't ever show the results.
Any suggestions?
Thanks,
Leslie
Leslie
landrews@metrocourt.state.nm.us
There are 10 types of people in the world -
those who understand binary
and
those who don't!
procedure TDataMod.qryChargesAfterScroll(DataSet: TDataSet);
begin
Form_CaseInformation.DBGrid_ChargesDblClick(self);
end;
but it doesn't ever show the results.
Any suggestions?
Thanks,
Leslie
Leslie
landrews@metrocourt.state.nm.us
There are 10 types of people in the world -
those who understand binary
and
those who don't!