Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim listLength As Integer = (ListBox1.Items.Count - 1)
For i = 0 To listLength
listString = ListBox1.Items.Item(i)
If InStr(listString.ToLower, TextBox1.Text.ToLower) Then
'replace the found item with what has been entered in textbox2
End If
Next
Dim listLength As Integer = (ListBox1.Items.Count - 1)
For i = 0 To listLength
listString = ListBox1.Items.Item(i)
Dim strFound As Integer
If InStr(listString.ToLower, TextBox1.Text.ToLower) Then
[RED]listbox.items.item(i) = TextBox2.Text[/RED]
End If
Next
listbox1.items.item(i) = liststring.tolower.replace(textbox1.text.tolower, textbox2.text)
Dim i As Integer
For i = 0 To ListBox2.Items.Count - 1
RO1 = (ListBox2.Items(i).ToString)
Dim iq As Integer
For iq = 0 To ListBox1.Items.Count - 1
Dim RO As String = (ListBox1.Items(iq).ToString)
If Regex.IsMatch(RO, RO1) Then
ListBox1.Items.Item(iq) = (RO.Replace(RO, ListBox2.Items.Item(+1)
End If
Next
Next
Dim iq As Integer
For iq = 0 To ListBox1.Items.Count - 1
Dim RO As String = (ListBox1.Items(iq).ToString)
If Regex.IsMatch(RO, RO1) Then
ListBox1.Items.Item(iq) = RO.Replace(RO, ListBox2.Items.Item([RED]iq + 1[/RED]))
End If
Next
Dim iq As Integer
For iq = 0 To ListBox1.Items.Count - 1
Dim RO As String = (ListBox1.Items(iq).ToString)
If Regex.IsMatch(RO, RO1) Then
ListBox1.Items.Item(iq) = ListBox2.Items.Item([RED]iq + 1[/RED])
End If
Next