[*] Hello Snoopy

.NET and Flash Blog

2004年8月3日

.NET环境下水晶报表使用总结

摘要: http://www.430000.net/ShowArticle.asp?ArticleID=50&ArticlePage=1 阅读全文

posted @ 2004-08-03 21:31 HelloSnoopy 阅读(355) 评论(0) 推荐(0) 编辑
TreeView专题

摘要: http://www.430000.net/ShowArticle.asp?ArticleID=44&ArticlePage=1 阅读全文

posted @ 2004-08-03 21:29 HelloSnoopy 阅读(341) 评论(0) 推荐(0) 编辑
去掉集合中的重复元素

摘要: 这样:object item;ArrayList arrNew = new ArrayList();for(int i=0;i<arr.Count;i++){ item = arr[i]; if(!arr.Contains(item)){ arrNew.add(item);}} 阅读全文

posted @ 2004-08-03 11:07 HelloSnoopy 阅读(652) 评论(1) 推荐(0) 编辑
用水晶报表导出DOC等文档

摘要: using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web;using System.Web.SessionState;using System.Web.UI;using System.Web.UI.WebCo... 阅读全文

posted @ 2004-08-03 10:18 HelloSnoopy 阅读(622) 评论(0) 推荐(0) 编辑