No.I am using the CLSWheel class and need to identify the "index" entry of the line selected. Is this possible?
Sub MyWheel_EndScroll
Log(MyWheel.Selection)
End Sub
Sub lblSystemName_Closed (Cancelled As Boolean, Selection As String)
Log("Enter lblSystemName_Closed")
Log ("intSystemPos A " & intSystemPos)
If Cancelled = False Then
lblSystemName.Text = Selection
intSystemPos = lstSystemID(0).IndexOf(whlSystem.Selection)
Log ("intSystemPos B " & intSystemPos)
End If
End Sub
Sub whlCustomSingle_Closed(Canceled As Boolean, Selection As String)
Private day As String
Private Index As Int
day = whlCustomSingle.Selection
Index = lstCustomSingle(0).IndexOf(day)
Log(day & " / " & Index)
End Sub
Sub lblSystemName_Closed (Cancelled As Boolean, Selection As String)
Log("Enter lblSystemName_Closed")
Log ("intSystemPos A " & intSystemPos)
If Cancelled = False Then
lblSystemName.Text = Selection
intSystemPos = lstSystemName(0).IndexOf(Selection)
' intSystemPos = lstSystemName(0).IndexOf(lblSystemName.Text)
Log ("intSystemPos B " & intSystemPos)
End If
End Sub