I want to increase the progress in the progress bar using the number of files/folders that I have gone through so far (RealProgress:😁etailProgress).
This works unless the first variable for RealProgress:😁etailProgress is greater than the second variable.
Examples:
- RealProgress:😁etailProgress 100 100 works.
- RealProgress:😁etailProgress 101 100 doesn't work.
- RealProgress:😁etailProgress 50 50 works.
- RealProgress:😁etailProgress 51 50 doesn't work.
Here's the code snippet that I want to use to determine the number of DetailPrint's to use:
${locate::GetSize} "$EXEDIR" "" $0 $1 $2
IntOp $3 $1 + $2
RealProgress:😁etailProgress $3 100However, if $3 is greater than 100, it doesn't work properly.