摘要:
遍历datatable的方法2009-09-08 10:02方法一: DataTable dt = dataSet.Tables[0]; for(int i = 0 ; i 0) { rp_xx.DataSource = dtb_xx; ... 阅读全文
摘要:
Excel的便捷使得其在非开发人员的办公中非常流行,而Excel确实也提供了很多有用的功能。很多时候我们还需要以Excel为数据源来进行处理或者将Excel作为模板来生成一些报表。在Open XML SDK没出来之前,我们大多采用引用Office类库的方法来做处理,但这样的操作显得很麻烦。而Op... 阅读全文
摘要:
通过添加windowsbase.dll,可以解决这个问题,你可以在自己的电脑上找到这个文件,地址是:C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\windowsbase.dll 阅读全文
摘要:
FileStream fs = new FileStream(FILE_NAME, FileMode.Open, FileAccess.Read); 改FileStream fs = new FileStream(FILE_NAME, FileMode.Open, FileAccess.ReadWr... 阅读全文
摘要:
#region Copyright 2013, Andreas Hoffmann// project location ==> http://datafromfile.codeplex.com/#region License/*New BSD License (BSD) Copyright (c) ... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Drawing.Design;using System.Windows.Forms;... 阅读全文
摘要:
需求:客户的数据同时存在在另外一个不可控的系统中,需要和当前系统同步。思路:自动登录另外一个系统,然后抓取数据,同步到本系统中。技术点:模拟用户登录;保存登录状态;抓取数据/// /// visit the target url /// /// ... 阅读全文
摘要:
namespace ExcelTest{ using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Text; using Sy... 阅读全文
摘要:
前言:前面的几篇文章简单的介绍了如何使用OpenXML创建Excel文档。由于在平时的工作中需要经常使用到Excel的读写操作,简单的介绍下使用 OpenXML读取Excel中得数据。当然使用OpenXML将数据读取成什么格式并不重要,本文仅仅介绍如何读取到DataTable中。准备工作: 1.... 阅读全文