上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页
摘要: 一、获取主程序配置文件//一、配置文件读取方式 <appSettings> <!--集成平台Webservice接口地址--> <!--<binding name="WSInterfaceSoap11Binding" closeTimeout="00:01:00" openTimeout="00:0 阅读全文
posted @ 2021-04-13 15:33 博客YS 阅读(344) 评论(0) 推荐(0) 编辑
摘要: //获取当前运行程序上一级目录PDF文件夹 private string txtPath = System.AppDomain.CurrentDomain.BaseDirectory + "PDF\\"; //如果该文件下没有PDF文件夹就创建该文件夹 if (!Directory.Exists(t 阅读全文
posted @ 2021-04-09 14:30 博客YS 阅读(146) 评论(0) 推荐(0) 编辑
摘要: SELECT * FROM 表名 WHERESELECT * FROM TABLE WHERE REGEXP_SUBSTR(列名, '^[0-9\.\-]\d*\.{0,1}\d+$') IS NOT NULL; 阅读全文
posted @ 2021-04-02 17:21 博客YS 阅读(2109) 评论(0) 推荐(0) 编辑
摘要: foreach (var dr in dgvOdExec.Grid.Rows) { if (dr.Cells[nameof(MedicalSkillsVo.OdTypCode)].Text == ExtraCharacterStrDefine.TREAT) { dr.Cells[nameof(Med 阅读全文
posted @ 2021-03-23 18:08 博客YS 阅读(47) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 日期格式 2019-04 /// </summary> public const string DATE_MONTH_FORMAT = "yyyy-MM"; /// <summary> /// 日期格式 2019-04-25 /// </summary> publ 阅读全文
posted @ 2021-03-23 18:01 博客YS 阅读(65) 评论(0) 推荐(0) 编辑
摘要: //dll文件路径 string path = @"D:\VS2015Project\001\Computer\bin\Debug\computer.dll"; //加载dll文件 Assembly asm = Assembly.LoadFile(path); //获取类 Type type = a 阅读全文
posted @ 2021-03-23 14:26 博客YS 阅读(256) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-03-19 20:24 博客YS 阅读(21) 评论(1) 推荐(0) 编辑
摘要: --死锁的信息 SELECT * FROM V$SESSION T1, V$LOCKED_OBJECT T2 WHERE T1.SID = T2.SESSION_ID; -- 解锁 ALTER SYSTEM KILL SESSION '23,14883'; 阅读全文
posted @ 2021-03-13 18:59 博客YS 阅读(116) 评论(0) 推荐(0) 编辑
摘要: //去重筛选三个属性去重筛选 var ChgDtlVoList = datas.Where((x, i) => datas.FindIndex(z => z.ChgId == x.ChgId && z.OdStd == x.OdStd && z.BatNo == x.BatNo) == i).ToL 阅读全文
posted @ 2021-03-13 17:43 博客YS 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 1.效果图 2.实现代码 List<GridColumn> columns = new List<GridColumn>(); columns.Add(new GridColumn() { Caption = "使用人", ParentGroupKey = "使用", DataType = type 阅读全文
posted @ 2021-03-13 17:19 博客YS 阅读(142) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页