Dear Sergey,
I have played with sDBLookupComboBox.pas file and These were what I have done.
under
Code:
procedure TsDBLookupComboBox.WndProc(var Message: TMessage);
I edit the line 470
Code:
WM_NCPAINT: begin
FCommonData.Invalidate(True); <— I added These
PaintText; <– I added these
PaintBorder;
Exit;
end;
And it seems it do the trick.. when I search using keyword by typing character and press enter the text update correctly at the edit box also
when using mouse click .
previously if do search by typing and mouse click the list box just closed but what ever shows on the edit box were not refreshed.
please advise if these were already correct way to fix my issue in your opinion.
funny thing is outside my project if i create new project with the sdblookupcombobox it doesnt how issue like the one in my project.
regards