Subject Re: [IBO] Is this a bug?
Author Helen Borrie
At 04:48 PM 26/06/2004 +0800, you wrote:
>I have a TIB_Grid with some code on its onclick event. I have notice
>that the event won't trigger if it hasn't receive focus. so what happen
>is on first click into the tib_grid the grid receive focus but the
>onclick event didn't trigger. Is this a bug or it's the way it should be.

It's the way it should be. Let the grid do its own thing first by
including the line

inherited;

before adding your own code to the OnClick handler.

That way, you avoid your code being unable to do what it's supposed to
do because the grid isn't ready.

Helen