5行目で「NullReferenceException was unhandled.Object reference not set to an instance of an object」というエラーが表示され続けます
1. Private void textbox1_TextChanged(object sender,EventArgs e)
2 {
3. SqlConnection cn=new SqlConnection("Connection string");
4. String sql ="select name from bank_info where account_no ='"+textbox1.Text+"'";
5. SqlCommand cmd =new SqlCommand(sql,cn);
6. Cn.Open();
7. String s1 = cmd.ExecuteScalar().ToString();
8. TextBox2.Text =s1.ToString();
プログラミング初心者です。よろしくお願いします。