我想在 private void frm_wzbf_Load(object sender, EventArgs e)下同时实现分别查询两个不同的表,将其查询结果一个数据读进textbox1,另一个数据读进combobox1中,请问如何实现,谢谢!在线等!附上我的做法:SqlConnection conn = myconnection.GetCon(); 
SqlDataAdapter SDA = new SqlDataAdapter("select bfmc 报废原因 from bfyy ;select kcsl from wpxm where kcsl='"+textbox1.Text+"'", conn); 
            DataSet ds = new DataSet(); 
            SDA.Fill(ds); 
            this.combobox1.Items.Add(ds.Tables[0].Rows[0][0].ToString()); 
            dqkc.Text = ds.Tables[1].Rows[0][0].ToString (); 
提示“在位置 0 处没有任何行。”