2018年4月20日

日期和时间戳转换

摘要: 日期和时间戳转换 var a = new Date(); a = dataInfo1[0].split(",")[i]; var b = Date.parse(a); var c = b - 60 * 60 * 1000; var d = new Date(c); var e = d.getFull 阅读全文

posted @ 2018-04-20 10:00 七七2020 阅读(157) 评论(0) 推荐(0) 编辑

2018年4月9日

C#实现MD5加密

摘要: 引用using System.Security.Cryptography;using System.Text;具体代码如下:byte[] result = Encoding.Default.GetBytes(string a); MD5 md5 = new MD5CryptoServiceProvi 阅读全文

posted @ 2018-04-09 10:29 七七2020 阅读(165) 评论(0) 推荐(0) 编辑

2018年3月28日

ds.Tables[0].Rows.RemoveAt(i)数据库表格删除行

摘要: 不要在循环里使用myDataTable.Rows.RemoveAt(i).因为每删除一行后.i的值会增加,但行数会是减少了.这么做一定会出错.因此要遍历数据,使用Remove方式时,要倒序的遍历int count = ds.Tables[0].Rows.Count;for (int i = coun 阅读全文

posted @ 2018-03-28 15:12 七七2020 阅读(274) 评论(0) 推荐(0) 编辑

页面表格中长英文字符串不能自动换行的问题

摘要: 有时候一个单元格中是一个长英文单词,或者英文名称加单位过长,单元格不能自动换行。 只需在要换行的地方加入空格即可。 阅读全文

posted @ 2018-03-28 13:59 七七2020 阅读(250) 评论(0) 推荐(0) 编辑

2018年3月9日

c# 文件过大时清空原有内容重新写入

摘要: FileStream fs = new FileStream("E:\\Test\\HistoryData.txt", FileMode.Append, FileAccess.Write); StreamWriter sw1 = new StreamWriter(fs); listboxdata = 阅读全文

posted @ 2018-03-09 07:52 七七2020 阅读(5684) 评论(0) 推荐(0) 编辑

2018年1月18日

c# 记录内容到txt文件

摘要: //string记录到文件 string a= content;//采样结果 if (!File.Exists("e:\\newfile\\newtxt.txt")) { new FileStream(" e:\\newfile\\newtxt.txt", FileMode.Create, File 阅读全文

posted @ 2018-01-18 12:43 七七2020 阅读(415) 评论(0) 推荐(0) 编辑

c# 关闭和重启.exe程序

摘要: Process[] myprocess = Process.GetProcessesByName("a"); if (myprocess.Count() > 0)//判断如果存在 { //myprocess[0].Kill();//关闭程序 } else { try { Process newPro 阅读全文

posted @ 2018-01-18 12:42 七七2020 阅读(7064) 评论(0) 推荐(0) 编辑

2018年1月4日

mutex 互斥量

摘要: 有用参考:http://blog.csdn.net/yl2isoft/article/details/46003467 摘抄记录:using System.Threading; class Example{ // Create a new Mutex. The creating thread doe 阅读全文

posted @ 2018-01-04 10:49 七七2020 阅读(163) 评论(0) 推荐(0) 编辑

2017年12月28日

mysql 事件

摘要: 检查事件定时启动状态 SHOW VARIABLES LIKE 'event_scheduler'; 如果没有打开,则打开SET GLOBAL event_scheduler = ON;(只是暂时打开,重启服务就会关掉) 如果要永久打开,修改my.ini 在[mysqld]中添加 event_sche 阅读全文

posted @ 2017-12-28 14:21 七七2020 阅读(118) 评论(0) 推荐(0) 编辑

2017年12月21日

网页设计颜色搭配参考网站

摘要: 阅读全文

posted @ 2017-12-21 16:49 七七2020 阅读(121) 评论(0) 推荐(0) 编辑

导航