上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 31 下一页
摘要: Strategy Pattern using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;usin... 阅读全文
posted @ 2007-03-16 08:26 冷火 阅读(212) 评论(0) 推荐(0) 编辑
摘要: Untitled Page using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using Syste... 阅读全文
posted @ 2007-03-16 08:25 冷火 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1.项目概述与架构分析微软刚推出了基于ASP.NET 2.0下的Pet Shop 4, 该版本有了一个全新的用户界面。是研究ASP.NET 2.0的好范例啊,大家都知道,一直以来,在.NET和Java之间争论不休,到底使用哪个平台开发的企业级应用性能最好、结构最优、生产力最高。为了用事实说话,通过对项目各方面的性能评估进而在比较.NET和Java的高下。用户做比较的这个项目就是Petshop。正因... 阅读全文
posted @ 2007-03-15 13:59 冷火 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 一、数据库Test, 表:create table Customers ( CustId int IDENTITY(1,1) primary key, CustName varchar(20) not null, Address varchar(50), Linkman varchar(20) ) //insert into Cuso... 阅读全文
posted @ 2007-03-13 13:53 冷火 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 今天在MSDN看到一篇文章,受到启发,便用下面的方式实现TreeView的数据加载。因为使用了spring来注入业务方法,所以不完全贴上代码了,只贴上关键部分。 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> /// /... 阅读全文
posted @ 2007-03-12 10:06 冷火 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 当我们的软件需要各种饼状图和柱状图来表示数据时,我们或许会想到用Offices中的图形控件或是第三方控件,但现在的第三方控件大都需要注册,有些免 费的控件会有开发商的标记等。而对于使用Offices的图形控件来说,并不能在程序中得于很好控制,其使用的简易程度也较低,所以在这我给出在C#中使 用GDI+实现饼状图和柱状图跟数据库联接显示数据的方法。 using System; using Syste... 阅读全文
posted @ 2007-03-12 10:02 冷火 阅读(4262) 评论(3) 推荐(0) 编辑
摘要: Introduction The article describes how you can resize a DBGrid to fit the form after a resize, so that there is no horizontal scrollbar. To use it, you need the following code in the form where your ... 阅读全文
posted @ 2007-03-10 11:24 冷火 阅读(407) 评论(0) 推荐(0) 编辑
摘要: Introduction While doing some recent home-work, I needed to figure out how to implement drag-and-drop from a DataGridView control. I had two main controls on the form: a ListBox that contained a list... 阅读全文
posted @ 2007-03-10 11:17 冷火 阅读(503) 评论(0) 推荐(0) 编辑
摘要: 一、概述 在软件系统中,经常面临着“一系列相互依赖的对象”的创建工作;同时由于需求的变化,往往存在着更多系列对象的创建工作。如何应对这种变化?如何绕过常规的对象的创建方法(new),提供一种“封装机制”来避免客户程序和这种“多系列具体对象创建工作”的紧耦合?这就是我们要说的抽象工厂模式。抽象工厂模式是所有形态的工厂模式中最为抽象和最具一般性的一种形态,工厂方法针对的仅仅是一种“产品”,或者称为“类... 阅读全文
posted @ 2007-03-09 22:17 冷火 阅读(255) 评论(0) 推荐(0) 编辑
摘要: One of the projects had a requirement to create a context menu on mouse click over a DataGridView having employee details. The menu items may vary from column to column of the gridview. //Define di... 阅读全文
posted @ 2007-03-08 14:38 冷火 阅读(507) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 31 下一页