mien Posted October 3, 2009 Posted October 3, 2009 hi...can someone help me how to create progressbar in VBA..thanks.. Quote
ChrisMounts Posted October 3, 2009 Posted October 3, 2009 First add the "Microsoft ProgressBar Control". To do this go to Tools > Additional Controls. Once you have the control added simply place it on your form. To use it initialize it by setting a max value. This should be the total length of a For / Next loop or something similar. So if I was going to preform some operation on 20 objects I would set it up like this; frmMain.ProgressBar1.Max = 20 Inside your loop you simply set the Progress Bars Value property each time you loop though. frmMain.ProgressBar1.Value = x Hope this helps. Quote
mien Posted October 4, 2009 Author Posted October 4, 2009 thanks ChrisMounts....problem solved.. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.