2018年7月11日
摘要: 1 CREATE OR REPLACE FUNCTION F_AA(P_D in date, P_A in number) return varchar2 is 2 Result varchar2(200); 3 ls_name varchar2(20); 4 5 CURSOR myCur1 IS 6 SELECT Ts_Flag, C_NAME FROM ta... 阅读全文
posted @ 2018-07-11 10:22 ningmou 阅读(1398) 评论(0) 推荐(0) 编辑
  2018年7月6日
摘要: 跟一些IO有关的常用的功能放在System.IO而这个命名空间被放在mscorlib.dll 中,所以不用引用就能使用, 而一些底层或高级或特殊功能的特性通常会在System.IO的子名字空间中。而且子名字空间并不一定与父名字空间在同一个程序集。 .Net Framework中有很多这样的例子。Sy 阅读全文
posted @ 2018-07-06 10:27 ningmou 阅读(416) 评论(0) 推荐(0) 编辑
  2018年6月5日
摘要: select table_name from dba_tab_cols where column_name='COLNAME'; select table_name from user_tab_cols where column_name='COLNAME'; 阅读全文
posted @ 2018-06-05 08:34 ningmou 阅读(978) 评论(0) 推荐(0) 编辑
  2018年5月16日
摘要: eg =TEXT(D2,"[h]:mm:ss") 阅读全文
posted @ 2018-05-16 14:49 ningmou 阅读(108) 评论(0) 推荐(0) 编辑
  2018年3月29日
摘要: ultraGrid1_InitializeLayout方法 //将C列表显示在AB列头上 ,C属性值不显示 //但对导出不起作用,还是会导出C列的值 this.ultraGrid1.DisplayLayout.Bands[0].UseRowLayout = true;//重要 ColumnsColl 阅读全文
posted @ 2018-03-29 15:53 ningmou 阅读(406) 评论(0) 推荐(0) 编辑
  2018年3月23日
摘要: appt.Visible = false; Excel.Worksheet sheet = (Excel.Worksheet)appt.Workbooks.Open(_FilePath, Type.Missing, Type.Missing, Type.Missing, Type.Missing, 阅读全文
posted @ 2018-03-23 10:48 ningmou 阅读(555) 评论(0) 推荐(0) 编辑
  2018年1月9日
摘要: 将更新脚本放在 TestScript 中即可运行调试。 阅读全文
posted @ 2018-01-09 15:34 ningmou 阅读(101) 评论(0) 推荐(0) 编辑
  2017年9月13日
摘要: 开始-条件格式-新建规则 阅读全文
posted @ 2017-09-13 11:25 ningmou 阅读(197) 评论(0) 推荐(0) 编辑
  2017年5月31日
摘要: public partial class WebPp : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { try { string path = Request.PhysicalApplicati 阅读全文
posted @ 2017-05-31 17:03 ningmou 阅读(141) 评论(0) 推荐(0) 编辑
  2016年10月10日
摘要: DataTable dt = new DataTable(); dt.Columns.Add("name", typeof(string)); dt.Columns.Add("value", typeof(int)); dt.Columns.Add("para", typeof(string)); ... 阅读全文
posted @ 2016-10-10 16:29 ningmou 阅读(256) 评论(0) 推荐(0) 编辑