Advertisement
Advertisement
| 07.10.2008 at 07:24AM PDT, ID: 23553870 |
|
[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: |
tempstring = mgr.PresetCals(camera_name)
current_camera = Split(tempstring, vbCr)
If Not IsNull(tempstring) Then
frm_toolbar.mnucalibrationvalues(0).Visible = True ' ensure at least one visible menu item to allow deletions
'unload any previous menu items
For i = frm_toolbar.mnucalibrationvalues.count - 1 To 1 Step -1
Unload frm_toolbar.mnucalibrationvalues(i)
Next
If UBound(current_camera) > 0 Then
For i = LBound(current_camera) To UBound(current_camera)
frm_toolbar.mnucalibrationvalues(frm_toolbar.mnucalibrationvalues.UBound).Caption = current_camera(i)
Load frm_toolbar.mnucalibrationvalues(frm_toolbar.mnucalibrationvalues.UBound + 1)
Next i
frm_toolbar.mnucalibrationvalues(0).Visible = False 'to ensure the first entry is not repeated in the list
frm_toolbar.txtprecals.text = frm_toolbar.mnucalibrationvalues(index).Caption
|