Q&A

  • ListView에서 MutiSelect 시 선택된 Item을 알수 있는방법
ListView에서 하나의 Item을 선택하는것은

ListView1.Selected.Itemindex 를 이용해 선택된 Item을 알수 있는데

MutiSelect를 True를 해놓고 여러개의 Item을 선택할 경우
선택된 Item들을 알수 있는 방법좀 가르쳐 주세요....

1  COMMENTS
  • Profile
    최용일 2003.11.21 20:37
    안녕하세요. 최용일입니다.

    TListItem.Selected속성을 이용하시면 됩니다. for문으로 돌리세요...

    var
        Index: Integer;
    begin
        for Index := 0 to ListView1.Items.Count - 1 do
        begin
            if ListView1.Items[Index].Selected then
              ListBox1.Items.Add(ListView1.Items[Index].Caption);
        end;
    end;

    ^^ 항상 즐코하세요...