Subject | Re: IB_Grid & IB_ComboxBox |
---|---|
Author | kamen_lai@yahoo.com |
Post date | 2000-11-28T10:21:33Z |
it may be
( (Screen.ActiveForm <> Nil) and ( Controls[ii] =
Sreen.activeform.activecontrol) )
( (Screen.ActiveForm <> Nil) and ( Controls[ii] =
Sreen.activeform.activecontrol) )
--- In IBObjects@egroups.com, kamen_lai@y... wrote:
> Because of IB_Combox can't detected focused property
> , i modify below line for detected IB_Combox if its current control
>
> 'IBG_Custom.IMP'
>
> Line 1331 original
> if ((Controls[ii] as TWinControl).Focused) then begin
>
> Change to
> if ((Controls[ii] as TWinControl).Focused)
> or (Controls[ii] = Screen.activeform.activecontrol) //
Added
> then begin
>
> Is it Correct ?