Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
307 B

  1. Attribute VB_Name = "Module1"
  2. Public IExplorer As InternetExplorer
  3. Public Sub EmptyFolderList()
  4. For i = 1 To FolderList.Count
  5. FolderList.Remove 1
  6. Next i
  7. End Sub
  8. Public Sub EmptyFolderItemList()
  9. For i = 1 To FolderItemList.Count
  10. FolderItemList.Remove 1
  11. Next i
  12. End Sub