2014-05-15 83 views

回答

0

試試這個邏輯...

For count = 0 To DataGridView1.RowCount - 1 
    If DataGridView1.Rows(count).Cells(0).Value = True Then 
     'SQL INSERT COMMAND HERE 
    End If 
Next 
0

既然是一個ListView,你需要遍歷的CheckedItems集合:

For Each lvi As ListViewItem in myLv.CheckedItems 
    ' SQL operation using lvi.SubItems for the values 
Next 

這將檢查所有項目(根據問題),而不僅僅是一個d在圖像中。你也可以迭代CheckedIndices作爲Items()的索引。