Title says it all, I need help making my search input box find the title and display it when the user only types part of the movie title before searching. This is what I have now and it works great, but you must type in the complete title. Any help would be appreciated! Thanks
    Private Sub btnSearch_Click(sender As Object, e As EventArgs)Handles btnSearch.Click
    'Searches for movie in listbox
    Dim strDVDtitle As String
    strDVDtitle = InputBox("Enter Movie Title:")
    Dim X As Integer = 0
    Dim bolDVDFound As Boolean = False
    For X = 0 To count - 1
        If DVDS(X).DVDtitle = strDVDtitle Then
            txtDVDyear.Text = DVDS(X).DVDyear
            txtDVDtitle.Text = DVDS(X).DVDtitle
            txtDVDyear.Text = DVDS(X).DVDyear
            txtDVDruntime.Text = DVDS(X).DVDruntime
            txtDVDrating.Text = DVDS(X).DVDrating
            bolDVDFound = True
        End If
    Next
    If bolDVDFound = False Then
        MessageBox.Show("Movie not found")
    End If
End Sub 
 
     
    