I am sort of neww to the programming world. I am taking a VB.NET class and have a late binding error in my code. Could someone please help me find it.

Here is my code:

VB Code:
  1. Private Sub addButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles addButton.Click
  2.         ' Adds a new movie categroy to the category list.
  3.  
  4.         With movieCategoryComboBox
  5.             ' Test for blank input.
  6.             If .Text <> "" Then
  7.                 ' Make sure the item is not already selected.
  8.                 Dim itemFoundBoolean As Boolean
  9.                 Dim itemIndexInteger As Integer
  10.                 Do Until itemFoundBoolean Or itemIndexInteger = movieCategoryComboBox.Items.Count
  11.                     If .Text = [U].Items(itemIndexInteger).ToSting()[/U] Then
  12.                         itemFoundBoolean = True
  13.                     End If
  14.                     itemIndexInteger += 1
  15.                 Loop
  16.                 If itemFoundBoolean Then
  17.                     MessageBox.Show("Duplicate Item", "Add Failed")
  18.                 Else
  19.                     ' If it's not in the list then add it.
  20.                     .Items.Add(.Text)
  21.                     .Text = ""
  22.                 End If
  23.             Else
  24.                 MessageBox.Show("Enter a Movie Category To Add", "Missing Data", _
  25.                     MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
  26.             End If
  27.             .Focus()
  28.         End With
  29.     End Sub

I have underlined were the error is.