Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道如何在 Visual Basic 中的 datagridview 中仅使用行和列坐标填充单个单元格。因此,例如我有行坐标:10 和列坐标:10 并且在该单元格内我想写你好,我该怎么做?
你可以试试下面这样,它会帮助你..
//It sets the value "Hello" to 10th Rows 10th Cell DataGridView1.Rows(10).Cells(10).Value = "Hello"