What differences are between these below lines . When I used the first syntax , it's doing some kind of binding (see my last post to know about the problem) . I used that in the whole proj . When I used the second line , I never have any prpblem . What's going on ?

VB Code:
  1. '1
  2. Me.Listbox.SelectedItem.ToString()
  3. '2
  4. Listbox.SelectedItem.ToString()