private void แสดงยอดค้างชำระเมื่อเลือก()
{
String t = mem_id.Text;
String a = comboBox1.Text;
strSQL = "SELECT เงินต้นค้างชำระ From ค้างชำระ WHERE เลขที่รายการกู้ LIKE '%" + a + "%' AND mem_id LIKE '%" + t + "%' ";
SqlCommand da2 = new SqlCommand(strSQL, connection);
textBox7.Text = da2.ExecuteScalar().ToString();
}