摘要: demo效果 Md5类 其中有一个引用 using System.Security.Cryptography; 阅读全文
posted @ 2016-06-25 18:56 草原獒情 阅读(221) 评论(0) 推荐(0) 编辑
摘要: demo效果: (1)创建一个SetWaterText静态类 需要添加的两个引用:using System.Runtime.InteropServices;using System.Windows.Forms; (2)调用即可 阅读全文
posted @ 2016-06-25 17:45 草原獒情 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 填写完用户名和密码后,点击数据库下拉菜单,接着就报错误 在网上查了好多,最后的解决方案是:迅雷更改了winsock的某些设置,重置了一下winsock就OK了,命令:netsh winsock reset 运行后,问题解决 !!!! 阅读全文
posted @ 2016-06-14 22:32 草原獒情 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.weixingon.com/s/visualsvn+%E4%B8%AD%E6%96%87 1.几种代理管理工具的适用场景 A.如果你的项目是5-6人的小团队,那么使用VSS已经可以了。 B.如果是几十个人的团队,团队中需要创建代码分支,或者需要跨平台,跨地区开发,那么 阅读全文
posted @ 2016-06-13 20:00 草原獒情 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.cnblogs.com/IPrograming/archive/2012/12/15/SVN_1.html 使用SVN进行源码管理(上) 在原来的项目中使用的源码管理工具是VSS,由于我的机器在使用时出现了非常 奇怪的问题——连结局域网服务器上的VSS,一直连接不上, 阅读全文
posted @ 2016-06-13 19:34 草原獒情 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 文章原地址:http://www.cnblogs.com/armyfai/p/3985660.html SVN简介: 为什么要使用SVN? 程序员在编写程序的过程中,每个程序员都会生成很多不同的版本,这就需要程序员有效的管理代码,在需要的时候可以迅速,准确取出相应的版本。 Subversion是什么 阅读全文
posted @ 2016-06-13 19:28 草原獒情 阅读(128) 评论(0) 推荐(0) 编辑
摘要: private void Form1_Load(object sender, EventArgs e) { //生成DataTable DataTable table = new DataTable(); DataColumn Column; DataRow Row; ... 阅读全文
posted @ 2016-06-07 12:09 草原獒情 阅读(320) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace RobotTest { class Program ... 阅读全文
posted @ 2016-06-03 00:18 草原獒情 阅读(277) 评论(0) 推荐(0) 编辑
摘要: GirdControl是数据的容器,它包含多种显示方式,GridView则是一种二维表格视图。 绑定数据源: List<Student> list = new List<Student>(); list.Add…… …… gridControl.DataSource = list; //注意这里是给 阅读全文
posted @ 2016-06-01 17:59 草原獒情 阅读(319) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Configuration; using System.Data.Common; using System.Data; namespace Model { /// ///DBHelp... 阅读全文
posted @ 2016-05-21 11:19 草原獒情 阅读(2290) 评论(0) 推荐(0) 编辑