Public Class Form10
Private Sub Form10_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'Database2DataSet.บันทึกรายการซ่อม' table. You can move, or remove it, as needed.
Me.บันทึกรายการซ่อมTableAdapter.Fill(Me.Database2DataSet.บันทึกรายการซ่อม)
Me.ComboBox1.DataSource = Me.บันทึกรายการซ่อมBindingSource1
Me.ComboBox1.DisplayMember = "ชื่อ"
Me.ComboBox1.ValueMember = "หมายเลขเครื่อง"
End Sub
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
TextBox1.Text = ComboBox1.SelectedIndex.ToString()
End Sub
Private Sub บันทึกรายการซ่อมBindingSource1BindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles บันทึกรายการซ่อมBindingSource1BindingNavigatorSaveItem.Click
Me.Validate()
Me.บันทึกรายการซ่อมBindingSource1.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.Database2DataSet)
End Sub
End Class