I have a listview, first column = files, second column = size, on the dblclick event it msgbox's the file's size.

I have this error handler:
VB Code:
  1. On Error GoTo error
  2.  
  3. msgbox ListView1.ListItems.Item(ListView1.SelectedItem.Index).SubItems(1)
  4.  
  5. error:
  6. MsgBox Err.Description & vbnewline & Err.Number & vbnewline & Err.Source
and it just msgboxes '0'. That's all, no message, but when I take the error handler out, it doesn't give me an error at all.