悟生慧

 

2010年9月30日

PowerDesigner 12.5 导致的 Office Word 2007 鼠标在文档中无效的问题

摘要: 1、运行regedit.exe 打开注册表编辑器,定位到:HKEY_CURRENT_USER\Software\Microsoft\Office\Word\Addins\WordToRQM12.Connect 键,双击右边的“LoadBehavior”,在弹出的修改值对话框中将其值从3改为2,然后关闭注册表编辑器,重新启动Word。2、打开Word,点击左上角的圆形Offi... 阅读全文

posted @ 2010-09-30 17:55 悟生慧 阅读(360) 评论(0) 推荐(0) 编辑

2010年9月15日

left outer join 和 right outer join 和 join 的区别

摘要: 举个例子你就能知道了!A表(a1,b1,c1) B表(a2,b2)a1 b1 c1 a2 b201 数学 95 01 张三02 语文 90 02 李四03 英语 80 04 王五select A.*,B.* from A inner join B on(A.a1=B.a2)结果是:a1 b1 c1 a2 b201 数学 95 01 张三02 语文 90 02 李四select A.*,B.* from A left outer join B on(A.a1=B.a2)结果是:a1 b1 c1 a2 b201 数学 95 01 张三02 语文 90 02 李四03 英语 80 NULL NULL 阅读全文

posted @ 2010-09-15 15:11 悟生慧 阅读(335) 评论(0) 推荐(0) 编辑

2010年9月7日

定制文本框可随便输入字符串或数字并限制长度

摘要: /// <summary> /// 定制文本框可随便输入字符串 /// </summary> /// <param name="textBoxs"></param> /// <param name="maxLength"></param> public static void MadeStringTextBox(TextBox... 阅读全文

posted @ 2010-09-07 14:17 悟生慧 阅读(794) 评论(0) 推荐(0) 编辑

2010年8月28日

对象不能从DBNull转换为其他类型

摘要: 解决办法:1.if (dtedit.Rows[k][i] == DBNull.Value) num = 0; else num = Convert.ToInt32(dtedit.Rows[k][i]);2.在读取数据库数据时判断.如"Select IsNull(score,0) from score" 先把为null的数据表示为03. public static int ParseInt(obje... 阅读全文

posted @ 2010-08-28 17:57 悟生慧 阅读(2241) 评论(0) 推荐(0) 编辑

2010年8月27日

两张表合并加标识根据ID

摘要: select fpt_point,dt,(case [type] when 1 then '充值' when 0 then '消费' else 'error' end)as [type] from(select fpd.fpt_point,fpd.dt,'1' as [type] from td_fullPointDetail fpd where fpd.mem_id=1union select ... 阅读全文

posted @ 2010-08-27 16:37 悟生慧 阅读(297) 评论(0) 推荐(0) 编辑

2010年8月24日

检测字符串是否是数字

摘要: #region public bool ClassIsNumeric(string str):检测字符串是否是数字 /// <summary> /// 检测字符串是否是数字 /// </summary> /// <param name="str">string类型。待检测字符串</param> /// <returns>bool类型。字符... 阅读全文

posted @ 2010-08-24 17:37 悟生慧 阅读(229) 评论(0) 推荐(0) 编辑

2010年8月14日

两个按钮分别是线程的打开和终止

摘要: public partial class Form1 : Form { Thread thread=null; int n = 0;bool severIsRun=false;//用来村示线程是否启动private delegate void myDelegate(string str);//定义委托private void setRich(string str)//委托 { if (this.t... 阅读全文

posted @ 2010-08-14 15:59 悟生慧 阅读(375) 评论(0) 推荐(0) 编辑

2010年8月4日

C#组合算法

摘要: static string[] m_Data = { "A", "B", "C", "D", "E" }; static void Main(string[] args) { Dictionary<string, int> dic = new Dictionary<string, int>(); for (int i = 0; i < m_Data.Length; i... 阅读全文

posted @ 2010-08-04 17:10 悟生慧 阅读(288) 评论(0) 推荐(0) 编辑

随机产生1-100之间的20个随机数

摘要: private void Random(int[] arrayK){ int i = 0; int a,j; Random random = new Random(); while (i < 20) { arrayK[i]=random(100)+1; i++; }} 阅读全文

posted @ 2010-08-04 09:16 悟生慧 阅读(2604) 评论(0) 推荐(0) 编辑

2010年7月30日

创建一个存储过程

摘要: CREATE PROCEDURE uSP_BooksUploadFile@Title varchar(200),@Doc image,@DocType varchar(4)ASINSERT tblBooksUpload(DocTitle,Doc,DocType)VALUES (@Title,@Doc,@DocType)GO 阅读全文

posted @ 2010-07-30 16:13 悟生慧 阅读(478) 评论(0) 推荐(0) 编辑

导航