Subject | IB_Grid & IB_ComboxBox |
---|---|
Author | kamen_lai@yahoo.com |
Post date | 2000-11-28T09:40:13Z |
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 ?
, 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 ?