标签:cut 数据 清除 tin box nbsp 固定 int max
1、固定窗体大小,并不能最大/最小化;
FormBorderStyle属性设置为:FixedSingle
MaximizeBox = false
MinimizeBox = false
都是在Form属性里面的
2、ComboBox清除数据
如果是绑定获得的数据,可以设置ComboBox.DataSource为null即可。
如果一条条加载的话,可以用ComboBox.Items.Clear();
3、获取datareader中的内容
SqlDataReaderdr = cmd.Execute Reader();
way1: dr.GetName(0); dr.GetValue(0); int转换为字符串:dr.GetValue(0).ToString();
way2: dr[0]; int转换为字符串:dr[0].ToString();
way3:dr.GetInt32(0); dr.GetString(0);
标签:cut 数据 清除 tin box nbsp 固定 int max
原文地址:http://www.cnblogs.com/qev211/p/6817114.html