MrMiller
Aerospace
- Jan 30, 2004
- 54
This is probably an easy question for the VB guru....
I would like to set up a combo box to have 001 thru 248 and the numbers 1 thru 99 should include the leading zero(ie: 001, 002, and so on)
What do I need to add to my code below to pull this off? The code below produces (1,2,3, and so on)
For i = 1 To 248
ComboBoxSN.AddItem i '1-248
Next
I would like to set up a combo box to have 001 thru 248 and the numbers 1 thru 99 should include the leading zero(ie: 001, 002, and so on)
What do I need to add to my code below to pull this off? The code below produces (1,2,3, and so on)
For i = 1 To 248
ComboBoxSN.AddItem i '1-248
Next