Hi!
I'm trying to pass some data to a ListView.
Can anybody tell what I'm doing wrong?
Dim strMsg As String
Dim intTeller As Integer
Try
.BeginUpdate()
intTeller = lstMyList.Selec tedIndices.Coun t - 1
strMsg = InputBox("Give me words!", "New: " _
& lstMyList.Selec tedItems(intTel ler).Text _
& " " & "[index: " &
lstMyList.Selec tedIndices(intT eller).ToString () _
& "]", "????")
lstMyList.Items (intTeller).Sub Items.Add(strMs g)
.EndUpdate()
End With
Catch ..............
Me.Name
I'm trying to pass some data to a ListView.
Can anybody tell what I'm doing wrong?
Dim strMsg As String
Dim intTeller As Integer
Try
.BeginUpdate()
intTeller = lstMyList.Selec tedIndices.Coun t - 1
strMsg = InputBox("Give me words!", "New: " _
& lstMyList.Selec tedItems(intTel ler).Text _
& " " & "[index: " &
lstMyList.Selec tedIndices(intT eller).ToString () _
& "]", "????")
lstMyList.Items (intTeller).Sub Items.Add(strMs g)
.EndUpdate()
End With
Catch ..............
Me.Name
Comment