摘要: serialPort1 控件使用的关键点主要有三: 1、配置串口号2、配置数据接收事件3、打开串口 关键代码如下: 1 private void Form1_Load(object sender, EventArgs e) 2 { 3 serialPort1.PortName = "COM1"; 4 阅读全文
posted @ 2023-03-30 12:19 singelYang 阅读(215) 评论(0) 推荐(0) 编辑
摘要: cn:姓名英文缩写,sn:姓,c:CN(国家),l:县市,st:省,title:职位,description:描述,postalCode:邮政编码,postOfficeBox:邮政信箱,physicalDeliveryOfficeName:办公室,telephoneNumber:电话号码,facsi 阅读全文
posted @ 2020-08-06 13:58 singelYang 阅读(255) 评论(0) 推荐(0) 编辑
摘要: oracle11g修改sga要先修改memory_target等参数,否则服务重启时会出现错误ORA-00844: Parameter not taking MEMORY_TARGET into account, see alert log for mo re information。 Oracle 阅读全文
posted @ 2020-07-30 15:19 singelYang 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 一、内存结构SGA(System Global Area):由所有服务进程和后台进程共享;PGA(Program Global Area):由每个服务进程、后台进程专有;每个进程都有一个PGA。 二、SGA包含实例的数据和控制信息,包含如下内存结构:1)Database buffer cache:缓 阅读全文
posted @ 2020-07-30 14:21 singelYang 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 1. 打开文件夹: System.Diagnostics.Process.Start(FilePath); 打开文件夹中某个文件: System.Diagnostics.Process.Start(FilePath+"/"+FileName); 打开文件夹并选中单个文件: System.Diagno 阅读全文
posted @ 2019-11-14 10:35 singelYang 阅读(5416) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.IO; 6 using System.Diagnostics; 7 8 names 阅读全文
posted @ 2019-11-13 16:50 singelYang 阅读(2579) 评论(0) 推荐(1) 编辑
摘要: 做为一个不太称职的管理人员,常常跟员工谈起职业发展规划,毕竟希望公司和员工能共同发展。那么下面我浅谈一下我是怎么看待员工的职业发展规划的。在我看来并没有所谓35岁以后一定要去转管理什么的,这个是完全没有道理的,参考于其他技术行业,搞技术到60岁、70岁甚至于80岁都有,并非技术人员到35岁就要去转。 阅读全文
posted @ 2019-10-06 11:16 singelYang 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: 1、Content-Type:application/x-www-form-urlencoded; charset=UTF-8 前端export.json的请求 前端export.json的请求 后端export.json的处理方式 后端export.json的处理方式 对应的后端的处理方式,如果是 阅读全文
posted @ 2019-08-30 16:13 singelYang 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 1.例子导出Excel的样式 样式代码 2.单元格样式设置 框架4.0之上的导出 引用 Aspose.cell 阅读全文
posted @ 2019-06-05 10:38 singelYang 阅读(3903) 评论(0) 推荐(1) 编辑
摘要: select * from all_triggers WHERE table_name='表名' 阅读全文
posted @ 2019-01-03 21:54 singelYang 阅读(1179) 评论(0) 推荐(0) 编辑