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 position As Integer = ComboBox1.FindStringExact("<TextToFind>")
If position >= 0 Then ComboBox1.Items(position) = "<ReplacementText>"
Dim position As Integer = ComboBox1.FindString("<TextToFind>")
If position >= 0 Then ComboBox1.Items(position) = "<ReplacementText>"