2019年9月18日

C# Winform控件随父容器一起动态调整大小

摘要: 为控件的Anchor属性赋值。如: 阅读全文

posted @ 2019-09-18 12:03 PER10 阅读(2244) 评论(0) 推荐(0) 编辑

C# Winform控件的“鼠标离开”事件

摘要: 事件名:MouseMove。 如: 阅读全文

posted @ 2019-09-18 12:01 PER10 阅读(1604) 评论(0) 推荐(0) 编辑

C# Winform控件的“鼠标按下”事件

摘要: 事件名:MouseDown。(注意与Click事件区分开) 如: 阅读全文

posted @ 2019-09-18 11:58 PER10 阅读(1751) 评论(0) 推荐(0) 编辑

2019年9月16日

(Windows7)Visual Studio 2017编译运行出现脚本错误的解决方法

摘要: https://www.cnblogs.com/huangcong/p/8884947.html 阅读全文

posted @ 2019-09-16 15:19 PER10 阅读(728) 评论(0) 推荐(0) 编辑

2019年9月12日

SQL2008数据库的备份与还原

摘要: https://baijiahao.baidu.com/s?id=1594873726934602965&wfr=spider&for=pc 阅读全文

posted @ 2019-09-12 10:47 PER10 阅读(113) 评论(0) 推荐(0) 编辑

2019年8月26日

(常用)C#获取sql查询所返回的字段值

摘要: qlConnection conn = new SqlConnection(conn_str); conn.Open(); string sql = "select used_number from pipeline_Number"; SqlCommand cmd = new SqlCommand(sql, conn); SqlDataReader rdr = cmd.ExecuteReader( 阅读全文

posted @ 2019-08-26 17:36 PER10 阅读(4468) 评论(0) 推荐(0) 编辑

(常用)C# 连接数据库进行增删查改的基本模板

摘要: string conn_str = @"Server=(local); database = YJ_Database; User id = sa; Password = 123456"; SqlConnection conn = new SqlConnection(conn_str); conn.Open(); string... 阅读全文

posted @ 2019-08-26 12:40 PER10 阅读(252) 评论(0) 推荐(0) 编辑

SQLServer数据库添加主键和主键自增

摘要: https://jingyan.baidu.com/article/91f5db1b11dda21c7f05e3d3.html 阅读全文

posted @ 2019-08-26 12:37 PER10 阅读(3415) 评论(2) 推荐(0) 编辑

2019年8月23日

SQL Server 2008 R2安装图文教程

摘要: https://jingyan.baidu.com/article/0320e2c1286a2f1b87507b81.html 阅读全文

posted @ 2019-08-23 09:25 PER10 阅读(1294) 评论(0) 推荐(0) 编辑

sql server服务器名称(默认)

摘要: 本机IP:127.0.0.1 阅读全文

posted @ 2019-08-23 09:24 PER10 阅读(3434) 评论(0) 推荐(0) 编辑

导航