前提,不能放在Form_Load 中實作,因為當時視窗還沒有加載完,是以不能擷取視窗上某一控件的焦點
If ListViewForNow.ListItems.Count <> 0 Then
ListViewForNow.SelectedItem = ListViewForNow.ListItems(ListViewForNow.ListItems.Count)
ListViewForNow.SelectedItem.EnsureVisible
ListViewForNow.SetFocus
End If