Subject Re: [IBO] Re: ColorScheme details - OnDelete
Author Jason Wharton
> You might also just use the DeletingColor from the IbSession
> component. In the before delete do something like:
>
> for i := 0 to ComponentCount - 1 do begin
> if (Components[i] is Tib_Edit then
> Tib_Edit(Components[i].Color := IBSessionProp.DeletingColor;
> end;
>
> In the after delete just change the components back to their normal
> color.

I don't recommend doing this. Too messy.

Jason