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