1 最近在做一个交叉表的数据批量导入,采用过很多方式一直没有特别理想的解决方案,昨天终于解决了,以下是测试记录: 2 3 OpenFileDialog openfile = new OpenFileDialog(); 4 openfile.Filter = "工作薄(*.xlsx)|*.xlsx|所有文件(*.*)|*.*"; 5 if (openfile.FilterIndex == 1 && openfile.ShowDialog() == DialogResult.OK) 6 { 7 string path = openfile.FileName; 8 Read More
posted @ 2011-02-27 22:52 AriLee Views(1238) Comments(0) Diggs(0) Edit
 1 看到QuartzNet好长时间了,一直想测试一下,因为目前从事的项目好多都有涉及到时间调度任务,正好这个周末也没什么事,于是拿来尝尝香了,以下是我的测试代码: 2 3 配置文件(app.config): 4 5 <?xml version="1.0"?> 6 <configuration> 7 <!--关于Quartz.NET的配置--> 8 <configSections> 9 <section name="quartz" type="System.Configuration.Na Read More
posted @ 2011-02-27 22:17 AriLee Views(614) Comments(0) Diggs(0) Edit