tmsfnccheckedlistbox checked Items

Hello,

how can i get the name of all checked items from tmsfncchecklistbox?

Thanks for ur help

You can achieve this with the following code:

procedure TForm13.Button1Click(Sender: TObject);
var
  it: TTMSFNCCheckedListBoxItem;
  c: TTMSFNCListBoxCheckedItems;
  I: Integer;
  s: string;
begin
  c := TMSFNCCheckedListBox1.CheckedItems;
  for I := 0 to Length(c) - 1 do
  begin
    s := c[I].Text;
    TTMSFNCUtils.Log(s);
  end;
end;

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.