wmhysu

   :: 首页  :: 新随笔  :: 联系 ::  :: 管理

2007年1月16日

摘要: using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;namespace GreatWall.QueryFrm{/// <summary>/// 用来生成查询以及过滤条件的窗体/// </summary>... 阅读全文
posted @ 2007-01-16 10:38 空谷幽兰 阅读(917) 评论(5) 推荐(0) 编辑

2007年1月3日

摘要: 目前只实现了单表查询,多表连接会在后续using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;namespace GreatWall.QueryFrm{/// <summary>/// Query 的摘要说明。///... 阅读全文
posted @ 2007-01-03 10:19 空谷幽兰 阅读(541) 评论(0) 推荐(0) 编辑

2006年11月25日

摘要: using System.Runtime.InteropServices;using System.Text;using System.Security.Principal;using System;public class IdentityImpersonation{ [DllImport("advapi32.dll", SetLastError = true)] public static e... 阅读全文
posted @ 2006-11-25 16:31 空谷幽兰 阅读(337) 评论(0) 推荐(0) 编辑

摘要: using System;using System.Configuration;using System.Web;using System.Web.Security;using System.DirectoryServices;using System.Web.Configuration;using System.Collections;/// <summary>/// ADOprat... 阅读全文
posted @ 2006-11-25 16:30 空谷幽兰 阅读(936) 评论(0) 推荐(0) 编辑

2006年9月16日

摘要: using System;using System.Drawing;using GwmPrinter.Object;namespace GwmPrinter{/// <summary>/// 用来创建一个报表对象的类/// </summary>public class Report{ #region ************字 段************private Sy... 阅读全文
posted @ 2006-09-16 15:03 空谷幽兰 阅读(237) 评论(0) 推荐(0) 编辑

2006年9月14日

摘要: using System;using System.Drawing;using GwmPrinter.Object;namespace GwmPrinter{/// <summary>/// 定义了绘制报表各部分的方法,提供绘制整个报表的唯一方法/// </summary>public class DrawingMethod{private Report _report;p... 阅读全文
posted @ 2006-09-14 17:59 空谷幽兰 阅读(696) 评论(0) 推荐(0) 编辑

2006年8月11日

摘要: 一、DataTableDataTable表示内存中数据的一个表,它完全是在内存中的一个独立存在,包含了这张表的全部信息。DataTable可以是从通过连接从数据库中读取出来形成的一个表,一旦将内容读到DataTable中,此DataTable就可以跟数据源断开而独立存在;也可以是完全由程序自己通过代码来建立的一个表。◆ DataColumn一个表是由行和列组成的一个两维的结构。表的结构是由Data... 阅读全文
posted @ 2006-08-11 09:45 空谷幽兰 阅读(362) 评论(0) 推荐(0) 编辑