Q&A

  • ListView에서 특정라인만 뽑아 다시출력..
ListView에서요...

column이 A,B,C,D 있구요..

밑으루 값들이 쭈욱 있을때요...

A값이 1인것만 ListView로 다시 출력 할려고합니다..

도와주세요..ㅠㅠ
2  COMMENTS
  • Profile
    최용일 2007.05.04 04:08
    안녕하세요. 최용일입니다.

    아래와 같이 해보세요...

    <!--CodeS-->
    var
      Index: Integer;
    begin
      ListView1.Items.BeginUpdate;
      try
        for Index := ListView1.Items.Count - 1 downto 0 do
        begin
          if ListView1.Items[Index].Caption <> '1' then
            ListView1.Items.Delete(Index);
        end;
      finally
        ListView1.Items.EndUpdate;
      end;
    end;
    <!--CodeE-->

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

  • Profile
    델피언임 2007.05.04 05:08

    이렇게 한방에 해결될걸...  하루종일 고민했어요...ㅠㅠ

    감사합니다~~ ^^   행복하세요~~!!