关于绑定
											03里有个DataBind()方法.就是数据绑定的.05里怎么没有啊...05里与之对应的方法是什么呢?										
					
	 自己顶上去..多多指教..
自己顶上去..多多指教..										
					
	我做的是查询,把查询到的记录填到dataGridView中..我的代码如下:
    .......................
    string code = this.txtCodeQ.Text.ToString().Trim();
    SqlCommand myCom = new SqlCommand("SelectBuyInByCode", myCon);
    myCom.CommandType = CommandType.StoredProcedure;
    myCom.Parameters.Add(new SqlParameter("@Item_code", code));
     myCon.Open();
     SqlDataReader myReader = myCom.ExecuteReader();
     this.dataGridView1.DataSource = myReader;
     this.dataGridView1.DataBind();
我是调用的存储过程查询记录.红色的好象有问题.提示说:
