上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 74 下一页
  2021年4月25日
摘要: 1、正则:\d{17}[\d|X]|\d{15} 2、校验: using System; /// <summary> /// Summary description for IDCardValid /// </summary> public class IDCardValid {/// <summa 阅读全文
posted @ 2021-04-25 23:51 z5337 阅读(257) 评论(0) 推荐(0)
摘要: 直接上代码: using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using Syste 阅读全文
posted @ 2021-04-25 23:49 z5337 阅读(109) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/weixin_36397141/article/details/106437814 先上成功截图: 下载时进度一直为0时,可以在此路径查看日志文件: C:\Users\Administrator\AppData\Local\Temp\dd_vs_en 阅读全文
posted @ 2021-04-25 18:31 z5337 阅读(514) 评论(0) 推荐(0)
  2021年4月18日
摘要: 实现了提示控件(picture1)随着鼠标而移动,但点击时仍会显示(是一个BUG) 需要绑定事件到 form、panel1、picture1、等控件 private void panel1_MouseMove(object sender, MouseEventArgs e) { //timer1.S 阅读全文
posted @ 2021-04-18 22:08 z5337 阅读(94) 评论(0) 推荐(0)
  2021年2月4日
摘要: 参考:http://www.voidcn.com/article/p-mckvczfj-ov.html 解决 Oracle 数据库文件自动扩展到 32G 后报错 ORA-01563 的问题 create or replace procedure auto_add_datafile is ALL_fi 阅读全文
posted @ 2021-02-04 18:11 z5337 阅读(355) 评论(0) 推荐(0)
  2021年1月30日
摘要: 转自:https://www.cnblogs.com/heibai-ma/p/13675068.html -- 创建exec(sqlstring)函数方便执行 CREATE OR REPLACE FUNCTION "public"."exec"("sqlstring" varchar) RETURN 阅读全文
posted @ 2021-01-30 09:21 z5337 阅读(268) 评论(0) 推荐(0)
  2021年1月19日
摘要: 在 SQL Server 中建表时的自增列: Create table tmp1 ( id int identity(1,1) primary key, .... ) 而在 Oracle 中想要自增列,需要建触发器,如下所示: Create table tmp1 ( id int primary k 阅读全文
posted @ 2021-01-19 14:06 z5337 阅读(102) 评论(0) 推荐(0)
  2021年1月7日
摘要: 一段很有用的代码: $('#workDay').bind('input propertychange', function () { hui.toast('日期变化:' + $('#workDay').val()); }) 阅读全文
posted @ 2021-01-07 18:50 z5337 阅读(350) 评论(0) 推荐(0)
  2020年12月23日
摘要: 部分内容比较生硬,还需要继续优化 try { using (var package = new ExcelPackage()) { ExcelHelper.CreateExcel<ExcelInfo>(package, sheetName, title, titlesName, axs); retu 阅读全文
posted @ 2020-12-23 13:44 z5337 阅读(132) 评论(0) 推荐(0)
  2020年9月1日
摘要: 来自:http://www.xinshuru.com/ 更多控制技能:https://www.cnblogs.com/yangrenmu/p/7085815.html <!doctype html> <html> <head> <meta charset="UTF-8"> <title>叶子飘落</ 阅读全文
posted @ 2020-09-01 23:58 z5337 阅读(127) 评论(0) 推荐(0)
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 74 下一页