摘要: ///<summary> /// 截取字符串,不限制字符串长度 ///</summary> ///<param name = "str" > 待截取的字符串 </ param > ///< param name="len">每行的长度,多于这个长度自动换行</param> ///<returns>< 阅读全文
posted @ 2018-10-25 11:19 橘子拾光 阅读(630) 评论(0) 推荐(0)
摘要: http://www.w3school.com.cn/tiy/t.asp?f=csse_cursor AutoCrosshairDefaultPointerMovee-resizene-resizenw-resizen-resizese-resizesw-resizes-resizew-resize 阅读全文
posted @ 2018-09-20 09:18 橘子拾光 阅读(119) 评论(0) 推荐(0)
摘要: select * from tblConcludingApplication where States <> 2 and tblInternShipsId=" + sid + " 阅读全文
posted @ 2018-08-31 10:11 橘子拾光 阅读(326) 评论(0) 推荐(0)
摘要: if (value != null) { if (value != "") { if (value.indexOf("T") > 0) { value = value.substring(0, row.CreateDate.indexOf("T")); } return value; } } 阅读全文
posted @ 2018-08-28 13:34 橘子拾光 阅读(484) 评论(0) 推荐(0)
摘要: ref :使用前必须赋值初始化,但是初始化值不一定使用,若方法中没有第一次初始值,则使用,若有则不使用。 out:使用前则不需要,但是初始值必须是方法中第一次初始值,也只能在方法中赋值初始化。 阅读全文
posted @ 2017-12-05 20:13 橘子拾光 阅读(165) 评论(0) 推荐(0)
摘要: 前辈主页,感谢前辈! 阅读全文
posted @ 2017-11-29 17:47 橘子拾光 阅读(113) 评论(0) 推荐(0)
摘要: 感谢前辈提供 谢谢啦! 阅读全文
posted @ 2017-11-27 11:20 橘子拾光 阅读(141) 评论(0) 推荐(0)
摘要: use NewTest1 ---声明视图--- create view NewViewte as select StudentInfo.name as 姓名,StudentInfo.sex as 性别,course.name as 课程 from StudentInfo join Course on StudentInfo.Cid= Course.id ---调用视图 select * fr... 阅读全文
posted @ 2017-11-23 11:21 橘子拾光 阅读(345) 评论(0) 推荐(0)
摘要: foreach (System.Windows.Forms.Control control in this.Controls) { if (control is System.Windows.Forms.TextBox) { System.Windows.Forms.... 阅读全文
posted @ 2017-11-22 16:23 橘子拾光 阅读(649) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/lkjson/p/4337754.html 阅读全文
posted @ 2017-11-22 09:35 橘子拾光 阅读(122) 评论(0) 推荐(0)