即兴而抒

九十春光一掷梭,花前酌酒唱高歌。枝上花开能几日,世上人生能几何。 好花难种不长开,少年易过不重来。人生不向花前醉,花笑人生也是呆。 --明·唐寅 <<花下酌酒歌>>   
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2007年8月11日

摘要: 1.新建一个winform窗体,将CrystalReportViewer控件拖到窗体中.2.winform窗体后台代码如下:在项目解决方案中新增报表文件(.rpt文件)using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;usi... 阅读全文

posted @ 2007-08-11 09:31 pony 阅读(1060) 评论(3) 推荐(0)

摘要: /// /// 分割字符串,分割后的字符串以数组的方法返回 /// public static string[] Split(string str, string spliter) { ArrayList list = new ArrayList(); while (str.I... 阅读全文

posted @ 2007-08-11 08:36 pony 阅读(375) 评论(4) 推荐(0)

摘要: private void txt_Ecardforegift_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar '9') { e.Handled = true; } } 选择TextBo... 阅读全文

posted @ 2007-08-11 08:27 pony 阅读(386) 评论(4) 推荐(0)