Hey everybody,
|
Jabaco Source
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Public Sub Form_Load()
ComboBox1.AddItem 0
ComboBox1.AddItem 1
ComboBox1.ListIndex = 1
Debug.Print ComboBox1.ListIndex
'will not change ListIndex!!
ComboBox1.ListIndex = 0
Debug.Print ComboBox1.ListIndex
'will not change ListIndex!!
ComboBox1.ListIndex = -1
Debug.Print ComboBox1.ListIndex
End Sub
|
I am not sure if this was happening before!?
But with framework rev87 I can not set the ComboBox1.ListIndex to 0 or -1!!
Dani