Sorry for bumping this rather old topic, but I finally found a solution to this problem, so I figured, let's share!
To adjust values of an ActiveX-control you can do the following (e.g. a progress bar):
pbProgress.Value = 0
pbProgress.Object.Min = 0
pbProgress.Object.Max = 10
pbProgress.Value...