上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 29 下一页
摘要: function page($count,$pagesize=3){ $Page=new \Think\Page($count,$pagesize); //每页显示记录数 $Page->setConfig('header','共%TOTAL_ROW%条记录 每页'.C('PAGE_SIZE').'条 第%NOW_PAGE%页/共%TOTAL_PAGE%页'); $Page... 阅读全文
posted @ 2016-05-10 20:49 尘梦 阅读(205) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO... 阅读全文
posted @ 2016-05-10 11:19 尘梦 阅读(343) 评论(0) 推荐(0)
摘要: OpenFileDialog open = new OpenFileDialog();//创建对话框 open.InitialDirectory = @"C:\Documents and Settings\All Users\桌面"; //设置对话框路径 open.Title = "对话框1"; //对话框标题 open.... 阅读全文
posted @ 2016-05-10 09:06 尘梦 阅读(305) 评论(0) 推荐(0)
摘要: 电脑using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace shitou { class diannao { public int chuanquan() { Random rd = n... 阅读全文
posted @ 2016-05-09 11:00 尘梦 阅读(247) 评论(0) 推荐(0)
摘要: List<string> mp = new List<string>(); private void Form1_Load(object sender, EventArgs e) { string[] path = Directory.GetFiles(@"C:\Documents and Sett 阅读全文
posted @ 2016-05-09 09:42 尘梦 阅读(146) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using DBHelper;... 阅读全文
posted @ 2016-05-06 11:17 尘梦 阅读(1160) 评论(0) 推荐(0)
摘要: string a = this.textBox1.Text; // string [] b=a.Split("\r\n".ToCharArray(),StringSplitOptions.RemoveEmptyEntries); string[] b = textBox1.Lines; string 阅读全文
posted @ 2016-05-05 10:51 尘梦 阅读(146) 评论(0) 推荐(0)
摘要: double a = double.Parse( this.textBox1.Text); double b = double.Parse(this.textBox2.Text); double c =0; switch (this.comboBox1.Text) { ... 阅读全文
posted @ 2016-05-03 11:23 尘梦 阅读(210) 评论(0) 推荐(0)
摘要: MySqlParameter[] a=new MySqlParameter[]{new MySqlParameter("@stu_id",stu_id)}; 参数使用 阅读全文
posted @ 2016-04-29 08:51 尘梦 阅读(740) 评论(0) 推荐(0)
摘要: create procedure sting_a(in x int,in y int)begin set @x1=y*(x-1); set @x2=CONCAT('select * from t_student order by stu_id',' limit ', @x1,',',y); prep 阅读全文
posted @ 2016-04-25 10:05 尘梦 阅读(188) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 29 下一页