An object-oriented programming language developed by Microsoft that can be used in .NET.
Hi @Peter Volz ,
You can use a threshold or a tolerance level for comparison. Since it appears that the progress is provided as a floating-point number, you can check if the value is very close to 100 within an acceptable tolerance level.
Dim progress As Double = e.TotalPercent
Dim tolerance As Double = 0.01 ' Adjust this tolerance level as needed
If Math.Abs(progress - 100.0) < tolerance Then
End If
Best Regards.
Jiachen Li
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.