这是代码。
If TextBox3.Text = "" And TextBox4.Text = "" Then
MsgBox("Enter Data")
Else
Dim Quantity As String = ListBox3.Text
End If
ListBox1.Items.Add(TextBox3.Text.Trim())
ListBox5.Items.Add(TextBox4.Text.Trim())
ListBox3.Items.Add(TextBox5.Text.Trim())
DataGridView1.Rows.Add("", ListBox1.Text, "", "", ListBox5.Text, ListBox3.Text)
答案 0 :(得分:0)
如果您将数据绑定到网格,则需要向DataTable添加新行。
这是一个简短的例子:
Dim newRow As DataRow
newRow = dataSet.Tables(0).NewRow
newRow.Item(0) = txtValue1.Text
newRow.Item(1) = txtValue2.Text
dataSet.Tables(0).Rows.Add(newRow)