问题1 ①strSql.Append("select equInformation.equID,equName,equType,equSpecifica,equCate,status,yh_xxgl.userName");
strSql.Append(" FROM equInformation,yh_xxgl");//搜索的内容,首先内容搜索成功 ②在dataGridView中使用了DataPropertyName属性进行了绑定,其他的列都能绑定成功,只有yh_xxgl.userName不能绑定成功,这个该如何解决 问题2 ①ComboBox中先与数据绑定了基础表 例如cbxSrap.DataSource = dtScrap;
this.cbxSrap.DisplayMember = "scrapProcessing";
this.cbxSrap.ValueMember = "scrapCount";//先绑定数据 ②在页面层进行选择,把选中的项目存到数据库的另一张表,存的是ValueMember ,在数据库里是整型 例如equScrapModel.scrapCount = int.Parse (this.cbxSrap.ValueMember ); equScrapModel.scrapCount = int.Parse (this.cbxSrap.Text ); 报错:输入字符串的格式不正确。 这个到底应该怎么写????????????????????????
|