未处理的“System.ArgumentException”类型的异常出现在 system.windows.forms.dll 中。
未处理的“System.ArgumentException”类型的异常出现在system.windows.forms.dll中。其他信息:这会使集合中的两个绑定绑定到同一...
未处理的“System.ArgumentException”类型的异常出现在 system.windows.forms.dll 中。
其他信息: 这会使集合中的两个绑定绑定到同一个属性
程序代码如下:
SqlConnection con=new SqlConnection ("server=;database=gongdiguanli;uid=sa;pwd=''");
con.Open ();
string str="select * from users where username='"+this.comboBox1 .SelectedItem .ToString ()+"'";
SqlDataAdapter da=new SqlDataAdapter (str,con);
DataSet dss=new DataSet ();
da.Fill (dss,"users");
this.textBox1.DataBindings.Add("Text",dss,"users.userid");
this.textBox2.DataBindings.Add("Text",dss,"users.username");
this.textBox3.DataBindings.Add("Text",dss,"users.adress");
this.textBox4.DataBindings.Add("Text",dss,"users.age");
DataRow row = dss.Tables[0].Rows[0];
byte[] bPhoto = new byte[0];
bPhoto = (byte[])row["images"];
MemoryStream memstr = new MemoryStream(bPhoto);
pictureBox1.Image = Image.FromStream(memstr, true);
con.Close ();
数据表有以下字段:userid,username,adress,age,images,phone 展开
其他信息: 这会使集合中的两个绑定绑定到同一个属性
程序代码如下:
SqlConnection con=new SqlConnection ("server=;database=gongdiguanli;uid=sa;pwd=''");
con.Open ();
string str="select * from users where username='"+this.comboBox1 .SelectedItem .ToString ()+"'";
SqlDataAdapter da=new SqlDataAdapter (str,con);
DataSet dss=new DataSet ();
da.Fill (dss,"users");
this.textBox1.DataBindings.Add("Text",dss,"users.userid");
this.textBox2.DataBindings.Add("Text",dss,"users.username");
this.textBox3.DataBindings.Add("Text",dss,"users.adress");
this.textBox4.DataBindings.Add("Text",dss,"users.age");
DataRow row = dss.Tables[0].Rows[0];
byte[] bPhoto = new byte[0];
bPhoto = (byte[])row["images"];
MemoryStream memstr = new MemoryStream(bPhoto);
pictureBox1.Image = Image.FromStream(memstr, true);
con.Close ();
数据表有以下字段:userid,username,adress,age,images,phone 展开
3个回答
展开全部
this.comboBox1 .SelectedItem .ToString ()
这个错了。这样是得不到值的!
我现在也没法调试,但是感觉应该是
this.comboBox1 .SelectedItem .value.ToString ()
你查一下!
这个错了。这样是得不到值的!
我现在也没法调试,但是感觉应该是
this.comboBox1 .SelectedItem .value.ToString ()
你查一下!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
this.comboBox1 .SelectedItem .ToString ()
这话意思是comboBox1 选中的项,
你并没有得到他的值,
this.comboBox1 .SelectedItem .value .ToString ().Trim();
这话意思是comboBox1 选中的项,
你并没有得到他的值,
this.comboBox1 .SelectedItem .value .ToString ().Trim();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string str="select * from users where username='"+this.comboBox1 .Text.ToString ()+"'";
直接这样就行啦!个人认为先判断是否为空!
直接这样就行啦!个人认为先判断是否为空!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询