for j:=0 to (listbox1.items.Count-1) do
          if listbox1.selected[j] then
             begin
                webbrowser1.navigate(listbox1.items.strings[j]);
              end;
 在这段程序中,我想让Webbrowser自动连续下载LISTBOX中选中的链接,但是不行,只有最后的链接被下载,我想大概是因为前面的被后面的打断的原因,请问有什么办法可以解决,谢谢