RemoveAll Method

Object: AXFileCollection
Syntax: AXFileCollection.RemoveAll
Description: Removes all files from the list of files to upload.
Example: The following lines add boot.ini and sample.jpg to the file upload, and remove both if the user drag-and-drops another file into the upload control.
Set AXFiles = AXFFile.Files 
AXFiles.Add "c:\boot.ini" 
AXFiles.Add "c:\sample.jpg"
sub AXFFile_OnDrop() 
    AXFiles.RemoveAll 
end sub 

Copyright © 2010 SoftArtisans, Inc. All rights reserved.