Jump to content

How do you listen for the clearbutton event?


flexdev

Recommended Posts

On 3/13/2023 at 11:02 PM, flexdev said:

what is the correct method to intercept the click on clearbutton in a dblookupcombobox?

Hello,

You can use OnSelect event for example.

procedure TMainForm.UniDBLookupComboBox1Select(Sender: TObject);
begin
  // if (Sender as TUniDBLookupComboBox).KeyValueStr = '' then //Cleared
  UniMemo1.Lines.Add('KeyValue = ' + (Sender as TUniDBLookupComboBox).KeyValueStr);
end;

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...