悟生慧

 
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 27 下一页

2011年11月9日

C#之winfrom打印图片

摘要: 第一步:拖一个printDocument控件到界面。打印按钮的代码:C# CODE:privatevoid button1_Click(object sender, EventArgs e)//执行打印 { PrintDialog MyPrintDg =new PrintDialog(); MyPrintDg.Document = printDocument1; if (MyPrintDg.ShowDialog() == DialogResult.OK) { try { printDocument1.Print(); } catch { //停止打印 printDocument1.PrintC 阅读全文

posted @ 2011-11-09 16:30 悟生慧 阅读(15283) 评论(0) 推荐(1) 编辑

2011年11月8日

如何在zedgraph中设置X坐标轴显示格式为日期时间型?转自:http://topic.csdn.net/u/20110508/14/0eb351c2-cacb-4ad2-b83b-f2ceb374f699.html

摘要: zedgraph相关链接:http://download.csdn.net/tag/zedgraphhttp://download.csdn.net/detail/wuyazhe/2591699http://download.csdn.net/detail/wuyazhe/2588529教程相关链接http://wenku.baidu.com/view/ffcf461dc281e53a5802ff9a.html源码下载:1.http://download.csdn.net/download/liu5623/18649332.http://download.csdn.net/download/s 阅读全文

posted @ 2011-11-08 15:08 悟生慧 阅读(2926) 评论(0) 推荐(0) 编辑

2011年10月27日

C#多线程间同步-实例 原文:http://blog.csdn.net/zhoufoxcn/article/details/2453803

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;using System.Threading;namespace ThreadDemo{ class Program { static void Main(string[] args) { ThreadDemo demo = new ThreadDemo(1000); demo.Action(); } } /// <summary> /// 线程同步的实例 /// < 阅读全文

posted @ 2011-10-27 11:58 悟生慧 阅读(266) 评论(0) 推荐(0) 编辑

2011年10月26日

C#反射的应用 原文摘自:http://blog.csdn.net/Tsapi/article/details/6234205

摘要: 最近做一个系统采用Silverlight+WCF,其中用到反射,反射的作用很大。最让人体会得到的就是可以把字符串通过relection为实体,这个很方便,尤其在做系统配置时,用到的字符串可以通过系统反射回实体,对其操作,实现想要的功能。当然通过反射对接口继承等等都可以实现。以下是反射的说明和具体实例。概念上:反射(Reflection)是.NET中的重要机制,通过放射,可以在运行时获得.NET中每一个类型(包括类、结构、委托、接口和枚举等)的成员,包括方法、属性、事件,以及构造函数等。还可以获得每个成员的名称、限定符和参数等。有了反射,即可对每一个类型了如指掌。如果获得了构造函数的信息,即可. 阅读全文

posted @ 2011-10-26 11:06 悟生慧 阅读(449) 评论(0) 推荐(0) 编辑

2011年10月24日

ymPrompt消息提示组件js实现

摘要: 原文转自:http://preview.zcool.com.cn/code/new_code/031/ymPrompt消息提示组件<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>ymPr 阅读全文

posted @ 2011-10-24 14:45 悟生慧 阅读(2357) 评论(0) 推荐(0) 编辑

2011年9月27日

C#水晶报表的分页统计字段

摘要: 一、在报表里定义三个公式字段如:qty_head、qty_dtl、qty_foot二、给三个字段分别加上代码1. qty_head代码whileprintingrecords;numbervar qty:=0; //数字currencyVar qty:=0; //金额2. qty_dtl代码whileprintingrecords;numbervar qty; //数字currencyVar qty; //金额qty := qty + {tbOrderOut_Dtl_View.qty};3. qty_foot代码whileprintingrecords;numbervar qty; //数字c 阅读全文

posted @ 2011-09-27 15:09 悟生慧 阅读(890) 评论(0) 推荐(0) 编辑

2011年9月19日

TreeView控件如何设置节点显示与隐藏,主要是用来做后台权限,没有权限的就隐藏,有权限的就显示?

摘要: 原文来自:http://wenwen.soso.com/z/q104168454.htmusing System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;/// <summary>/// TreeMa 阅读全文

posted @ 2011-09-19 17:30 悟生慧 阅读(3161) 评论(0) 推荐(0) 编辑

2011年9月16日

C#编写的winform程序打包方法

摘要: C#编写的winform程序打包方法1.在解决方案资源管理器 点击“解决方案” 添加 “新建项目” 选择-->其它项目类型-->安装和部署-->安装项目可修改名称、路径,默认不修改也可以2.右击 刚刚添加的“安装项目” 点击“添加”-->“项目输出” 直接点击 “确定”.3.右击 “安装项目” -->“视图” -->“文件系统”会看到有三个分类文件夹:1.应用程序文件夹 2.用户的“程序”菜单 3.用户桌面点击 应用程序文件夹 -->选中“主输出来自[解决方案即项目]”;复制并粘贴到“用户桌面文件”下 即是 桌面快捷方式。在用户的“程序”菜单下也粘贴个 阅读全文

posted @ 2011-09-16 11:35 悟生慧 阅读(814) 评论(0) 推荐(0) 编辑

2011年8月22日

C#委托学习 原文推荐:http://www.cnblogs.com/warensoft/archive/2010/03/19/1689806.html?login=1#commentform

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;using System.Data.SqlClient;namespace WindowsFormsApplication1{ /** * 两个RadioButton,分别用来让用户选择求最大值以及求最小值 rbtM 阅读全文

posted @ 2011-08-22 13:56 悟生慧 阅读(291) 评论(0) 推荐(0) 编辑

2011年8月16日

全角半角转换

摘要: #region 全角半角转换 /// <summary> /// 转全角的函数(SBC case) /// </summary> /// <param name="input">任意字符串</param> /// <returns>全角字符串</returns> ///<remarks> ///全角空格为12288,半角空格为32 ///其他字符半角(33-126)与全角(65281-65374)的对应关系是:均相差65248 ///</remarks> public stati 阅读全文

posted @ 2011-08-16 17:56 悟生慧 阅读(270) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 27 下一页

导航