Vba File Copy Progress Bar

Progress of the copy is tracked in the target file in case the copy fails. The failed copy can be restarted at a later time by specifying the same values for lpExistingFileName and lpNewFileName as those used in the call that failed.

  • The quick and easy way is to use Application.StatusBar. Code: Application.StatusBar = 'Processing File: ' & sFile. Beyond that, the next level is coding userform-based progress bars. Google 'excel vba progress bar'. There are a lot of examples.
  • Ready VBA Code snippets for Arrays, Strings, File Dialogs, Read/Write Files, Timers, Progress Bar Download LOOKUP Wizard Lookup data from external Excel files and worksheets with the Excel LOOKUP Wizard AddIn!
  • For example, you can set the value of the Maximum property to the total number of files in a file copy operation. Each time a file is copied, the Value property can be increased by 1 until the total number of files is copied. At that point, the progress bar would be completely filled.
-->

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Vba File Copy Progress Bar Examples

Gets or sets the maximum value of the range of the control.

Vba file copy progress bar example

Property Value

Vba File Copy Progress Bark

Int32

The maximum value of the range. The default is 100.

Exceptions

The value specified is less than 0.

Examples

The following code example uses a ProgressBar control to display the progress of a file copy operation. The example uses the Minimum and Maximum properties to specify a range for the ProgressBar that is equivalent to the number of files to copy. The code also uses the Step property with the PerformStep method to increment the value of the ProgressBar as a file is copied. This example requires that you have a ProgressBar control created called pBar1 that is created within a Form and that there is a method created called CopyFile (that returns a Boolean value indicating the file copy operation was completed successfully) that performs the file copy operation. The code also requires that an array of strings containing the files to copy is created and passed to the CopyWithProgress method defined in the example and that the method is called from another method or event in the Form.

Remarks

This property specifies the upper limit of the Value property. When the value of the Maximum property is changed, the ProgressBar control is redrawn to reflect the new range of the control. When the value of the Value property is equal to the value of the Maximum property, the progress bar is completely filled.

Vba

You can use this property to specify a value to which the Value property must be set (by setting the Value property or using the Increment or PerformStep methods) to indicate that an operation is complete. For example, you can set the value of the Maximum property to the total number of files in a file copy operation. Each time a file is copied, the Value property can be increased by 1 until the total number of files is copied. At that point, the progress bar would be completely filled.

Applies to

See also