|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 08/21/2009 at 02:40PM PDT, ID: 24672759 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: |
' Setup the overall progress bar
progress.ProgressBar1.Minimum = 0
progress.ProgressBar1.Maximum = lastRow
progress.ProgressBar1.Value = 0
Dim progressValueOverall As Double
progressValueOverall = lastRow / 100
Dim progressValueSheet As Double
'''''''''''''''other code happens here (database entry loops)
'''''''''''''' there are two loops, one for the first DB and one for the second, the first one will
'''''''''''''' loop once and then progress into the second DB and loop through that one until a it's
'''''''''''''' last row is met, then it will go back up to the first and repeat until both databases
'''''''''''''' reach their last row
' initialize the sheet progress bar
progress.ProgressBar2.Minimum = 0
progress.ProgressBar2.Maximum = lastRow
progress.ProgressBar2.Value = 0
progressValueSheet = lastRow / 100
'show the progress form
progress.Show()
'''''''''' here the rest of the second database entry takes place until the end of the loop for
'''''''''' the second DB
progress.ProgressBar2.Value = progress.ProgressBar2.Value + progressValueSheet
'''''''' loop for second DB ends here
progress.ProgressBar1.Value = progress.ProgressBar1.Value + progressValueOverall
progress.lblOverallProgressInfo.Text = progress.ProgressBar2.Value / 81 * 100
''' this labal above doesnt even update.
that is pretty much it, only the progressbar2 works, the progressbar1 and al lables on the form are frozen. I tried enabling double buffering through the form properties.
any help is greatly appreciated, as always, if you have questions, please ask!
Thanks again!
-Jason
|
Advertisement