Private Sub dataGridView1_CellContentClick(sender As Object, e As DataGridViewCellEventArgs)
txtEditID.Text = dataGridView1.CurrentRow.Cells("Cus_ID").Value.ToString()
txtEditAddress.Text = dataGridView1.CurrentRow.Cells("Cus_Address").Value.ToString()
txtEditName.Text = dataGridView1.CurrentRow.Cells("Cus_Name").Value.ToString()
txtEditLastname.Text = dataGridView1.CurrentRow.Cells("Cus_Lastname").Value.ToString()
txtEditTel.Text = dataGridView1.CurrentRow.Cells("Cus_Tel").Value.ToString()
txtEditEmail.Text = dataGridView1.CurrentRow.Cells("Cus_Email").Value.ToString()
End Sub