Remove Method

Object: AXFileCollection
Syntax: AXFileCollection.Remove File Name as String
Description: Removes the specified file from the set of files to upload.
Example: The following lines add boot.ini to the file upload, and remove boot.ini if the user drag-and-drops another file into the upload control.
Set AXFiles = AXFFile.Files 
AXFiles.Add "c:\boot.ini" 
sub AXFFile_OnDrop() 
    AXFiles.remove
    "c:\boot.ini" 
end sub 

Copyright © 2010 SoftArtisans, Inc. All rights reserved.