리스트 박스에서 여러항목을 선택하고 그걸 삭제하려고 하는데 잘 안되네여...아직 초보라서...-.-;;; 아래소스에서 계속 에러가 나더라구여~ for i := 0 to ListBox1.Items.Count-1 do begin if ListBox1.Selected[i] then listbox1.Item...
넘버3
•
2003.01.08 03:42
다음과 같이하면 잘 되실겁니다. 즐프~~~
for i := ListBox1.Items.Count - 1 downto 0 do
&...
for i := ListBox1.Items.Count - 1 downto 0 do
begin
if ListBox1.Selected[i] then
listbox1.Items.Delete(i);
end;