ShowProgress Method

 Object: AXFFileProgress
 Syntax: AXFFileProgress.ShowProgress
 Description: The ShowProgress method initiates the progress indicator.
 Example: The following procedure synchronizes the ActiveX control and its progress
indicator, and initiates both.
Sub Callback() 
    '--- Synchronize the upload control and the progress indicator:
    document.all("AXFFileProgress").XFRequestStream = opener.document.all("AXFFile").XFRequestStream

    '--- Initiate the progress indicator.
    document.all("AXFFileProgress").ShowProgress

    '--- Start the file transfer. 
    opener.document.all("AXFFile").Start 
    
    '--- Close the progress window when the transfer is complete. 
    window.close 
End Sub 
      

Copyright © 2010 SoftArtisans, Inc. All rights reserved.