Subject | Re: [IBO] Re: ColorScheme details - OnDelete |
---|---|
Author | Jason Wharton |
Post date | 2003-09-02T00:49:20Z |
> You might also just use the DeletingColor from the IbSessionI don't recommend doing this. Too messy.
> 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.
Jason