VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This is a example of how to manipulate the LBound and UBound properties of a control array

by NBS Solutions (5 Submissions)
Category: Miscellaneous
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Mon 6th December 2004
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This is a example of how to manipulate the LBound and UBound properties of a control array

API Declarations


'Create a control array set of combo boxes and use this code to reset it to the first item in the list. Ensure that you have at least one item in each combobox

Rate This is a example of how to manipulate the LBound and UBound properties of a control array



  
  For i = Combo1.LBound To Combo1.UBound
  
    Combo1(i).ListIndex = 0
  
  Next i

Download this snippet    Add to My Saved Code

This is a example of how to manipulate the LBound and UBound properties of a control array Comments

No comments have been posted about This is a example of how to manipulate the LBound and UBound properties of a control array. Why not be the first to post a comment about This is a example of how to manipulate the LBound and UBound properties of a control array.

Post your comment

Subject:
Message:
0/1000 characters