Below is my code. Can someone point me to an example of how to deal with the value of ListView4_ItemClick? I get [Ljava.lang.String;@410e3468. I should be getting “T7”. I have tried several different ways I found on the forms but I probably didn't do something right.
Sub Button4_Click
'Select Play List
Dim qry As String
ListView4.Clear
qry = "SELECT DISTINCT List FROM Playlist"
DBUtils.ExecuteListView(sql1,qry,Null,0,ListView4,False)
End Sub
Sub ListView4_ItemClick (Position As Int, Value As Object)
Label2.Text = Value
End Sub
Sub Button4_Click
'Select Play List
Dim qry As String
ListView4.Clear
qry = "SELECT DISTINCT List FROM Playlist"
DBUtils.ExecuteListView(sql1,qry,Null,0,ListView4,False)
End Sub
Sub ListView4_ItemClick (Position As Int, Value As Object)
Label2.Text = Value
End Sub