摘要: /********************************************************************************************************************************************/ /*时间:2019-8-24*/ /*功能:分别实现U8 XML交换数据文件*/ using System; us 阅读全文
posted @ 2019-09-24 21:49 EricLi 阅读(795) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/jinshengtao/article/details/17883075 http://www.cnblogs.com/subconscious/p/4001896.html http://my.phirobot.com/blog/2014-02-openc 阅读全文
posted @ 2018-01-04 14:34 EricLi 阅读(200) 评论(0) 推荐(0) 编辑
摘要: ThinkPHP http://www.thinkphp.cn Yii http://www.yiichina.com laravel https://laravel.com 中文社区:https://laravel-china.org oneThink http://www.onethink.cn 阅读全文
posted @ 2016-12-29 09:23 EricLi 阅读(173) 评论(0) 推荐(0) 编辑
摘要: http://www.open-open.com/lib/view/open1406378625726.html http://www.ichartjs.com http://echarts.baidu.com/index.html http://nvd3.org/examples/line.htm 阅读全文
posted @ 2016-10-18 15:04 EricLi 阅读(358) 评论(0) 推荐(0) 编辑
摘要: using System;using System.ComponentModel;using System.Web.UI;using System.Web.UI.WebControls;namespace Voucher{ [DefaultProperty("jText")] [Tool... 阅读全文
posted @ 2015-06-30 17:05 EricLi 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 在建造WinForm时须要加上一机关函数和Show办法using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using Syst... 阅读全文
posted @ 2015-05-13 14:46 EricLi 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 这两天为了做报表,研究了一下XtraReport 。为了添加空行,想了很多办法。其中如果有分组时,网上给出的办法就会失败。现将经验公布一下,希望各位都能少走弯路。1.加入自定义函数CreateCellArray,用于创建空行。2.生成报表的 FillEmptySpace 事件,填写如下代码。3.ta... 阅读全文
posted @ 2014-12-23 23:19 EricLi 阅读(1337) 评论(0) 推荐(0) 编辑
摘要: 在Detail的事件中:int i=0;private void OnBeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) { //控制每页报表显示的条数if (i!=0&&i%8==0) //每页显示8条{ Det... 阅读全文
posted @ 2014-12-22 22:29 EricLi 阅读(5494) 评论(0) 推荐(0) 编辑
摘要: 今天在论坛上看到一个举例,关于sql server 的示例。1/25/50/100美分,多少种可能拼凑成2美元。 看了其中第一条语法,放在SQL SERVER中测试,发现真的列举出所有组合成2美元的方式。 于是仔细研究语法,发现用了With关键字。 发现很长时间没有使用SQL SERVER数据库,真... 阅读全文
posted @ 2014-12-18 09:55 EricLi 阅读(2697) 评论(0) 推荐(0) 编辑
摘要: 由于一个系统的需要,需要在日志中加入自定义的信息,并且需要根据需要过滤显示其中的部分操作记录入修改,删除等,其他的不显示,具体的实现方法如下:一、需要继承 AuditDataItemPersistent,具体代码如下: public MyAuditDataItemPersistent(... 阅读全文
posted @ 2014-12-17 16:16 EricLi 阅读(445) 评论(0) 推荐(0) 编辑