我想將數據從記錄集綁定到數據網格視圖,但數據無法顯示在網格視圖中,我嘗試統計行,有2行數據,但無法綁定到grid viewADODB.Recordset數據無法綁定到datagridview
If Not rs.EOF Then
DataGridView1.DataSource = rs
DataGridView1.Refresh()
Else
MsgBox("Record Not Founds " & txtSearch.Text, MsgBoxStyle.OkOnly)
End If
你得到了什麼樣的錯誤? – 2GDev
沒有錯誤,沒有數據只顯示在網格視圖 – sozai
什麼是你的SQL?你的數據網格定義是什麼? – VMAtm