- 博客(7)
- 资源 (1)
- 收藏
- 关注
原创 关于C语言break跳出双重循环的小技巧
while(){ ······ switch() { case··· { ··· break;//想跳出while } ·· }}while语句括号里放一个变量,在switch语句里把该变量赋值为0,就退出while了其实就是这么简单。把while后的括号里写上a != 0然后在每
2015-11-10 02:11:05 6180
转载 C#winform treeview连接数据库后自动识别主键并显示出来
SqlConnection conn =new SqlConnection("你的数据库连接串");SqlCommand cmd = new SqlCommand("select * from persons",conn);conn.Open();SqlDataReader reader=cmd.ExecuteReader();while(r
2014-08-02 10:05:13 609
转载 关于单击某一列显示到textbox中
datagridview点击行,显示在textbox中 方法1: private void datagridview_CellClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex >= 0) { th
2014-07-26 13:39:35 668
转载 关于C#winfrom连接数据库的方法及解释
1.C#连接连接Access 程序代码: ------------------------------------------------------------------------------- using System.Data; using System.Data.OleDb; ...... string strConnection="Provider=M
2014-07-18 09:57:33 2904
原创 每日记录
cin和cout是对象名。在iostream这个文件里,可以找到下面这几句:extern istream cin; extern ostream cout; extern ostream cerr; extern ostream clog;显然它们都是全局对象。
2014-06-20 11:54:21 347
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人