07 2013 档案
摘要:bb 为nvarchar(50)CAST(bb AS int)select MAX(CAST(bb AS int)) from AAA
阅读全文
摘要:private void SetEnable(bool flag){ Type type = this.richEditControl1.GetType(); //ric即RichEditControl实例 PropertyInfo info = type.GetProperty("HorizontalScrollBar", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Public); ScrollBarBase vs = (ScrollBarBase)info.GetValue(richEdi
阅读全文
摘要:判断文件夹是否存在,不存在就创建if (!Directory.Exists(ss)){Directory.CreateDirectory(ss);}判断文件是否存在,不存在就创建if (!File.Exists(ss)){ Directory.Create(ss);}保存一个二进制文件到磁盘指定路径/// 保存一个二进制文件到磁盘指定路径/// /// 磁盘路径/// 二进制数据/// privatevoid SaveFile(string path, byte[] bytes){ try { //若他们先将以二进制的形式存在于数据库中,则需要先读出来,然后将其转换为 byte //byte.
阅读全文
摘要:在字符处理过程中,我们可能需要对某些字符进行替换,而且可能会有多个字符,请比较下面两种写法:一个是用标准的replace函数,另外一个则是用正则表达式string input = "1,;3^e";string tt = input.Replace(",", "").Replace(";", "").Replace("^", "");string rr = Regex.Replace(input, @",|;|\^", "&q
阅读全文
摘要:通常情况下,若是你将用户控件写好了放入窗体中,若是有不合理的代码,则会弹出错误提示框,不让你放。若是你之前只是随便加了一个用户控件,并且没有什么问题,但后来你又把控件改坏掉了,那么你打开就会报错(在窗体内显示错误,选择"忽略并继续"还是可以打开设计界面的)。一般在设计时打开设计视图报"未将对象引用设置到对象的实例",基本上都是你在用户控件的构造方法及Form Load事件中写入了计算的代码。如以下代码放入到别的控件中就会报错:using System;using System.Collections.Generic;using System.Compon
阅读全文
摘要:select cols.name,cols.id,objs.name,objs.id from syscolumns colsINNER JOIN sysobjects objs on cols.id = objs.idwhere cols.name = 'GroupID' and objs.xtype = 'U' Sqlserver中系统表: 相关连接http://www.cr173.com/html/19592_1.htmlsysaltfiles 主数据库 保存数据库的文件syscharsets 主数据库 字符集与排序顺序sysconfigures 主数据库
阅读全文
摘要:string[] myArr = { "Overred", "Medloy", "Xiaoguai", "Hare" };ArraySegment arrSeg = new ArraySegment(myArr);for (int i = arrSeg.Offset; i myArrSegMid = new ArraySegment(myArr, 1, 3);则取myArr的索引从1到3的值,转自:http://www.cnblogs.com/chenxizhang/archive/2009/04/23/14417
阅读全文
摘要:int i = 9;if (i % 2 == 0) goto Found;else goto NoFound; NoFound: Console.WriteLine(i.ToString() + "不是偶数"); goto finish;//出口点 Found: Console.WriteLine(i.ToString() + "为偶数"); goto finish; //出口点 finish: Console.Read();
阅读全文
摘要:Type trypInfo = typeof(Program);// Program为类名//获得方法名string str = "包括的方法名列表:\r\n";MethodInfo[] methodInfo = trypInfo.GetMethods();foreach (MethodInfo mInfo in methodInfo){ str += mInfo.ToString() + "\r\n";} 注:需要引用using System.Reflection;
阅读全文
摘要:exec sp_Msforeachtable 'drop table ?'删除数据库里面所有表执行上面的语句就可以了。值得注意的是若是有主外键关系的话,执行时会出现提示,你多执行几次就会将所有的表全部删除。
阅读全文
摘要:CREATE TABLE TreeShip([ID] uniqueidentifier PRIMARY KEY NOT NULL,[Name] [nvarchar](50) NULL,[Remark] [nvarchar](500) NULL,[ParentID] uniqueidentifier not null)GOINSERT INTO TreeShip(ID,Name,Remark,ParentID) values ('47B9AF56-32D8-4561-8096-15D832C47B26','上海一中','源数据','0000
阅读全文
摘要:dt.Columns.Add("ROWNUM", typeof(Int64));dt.Columns["ROWNUM"].SetOrdinal(0);
阅读全文
摘要: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.Reflection;using System.Runtime.InteropServices;namespace DealWithHtml{ public partial class E.
阅读全文
摘要:1、FACTORY 工厂方法追MM少不了请吃饭了,麦当劳的鸡翅和肯德基的鸡翅都是MM爱吃的东西,虽然口味有所不同,但不管你带MM去麦当劳或肯德基,只管向服务员说“来四个鸡翅”就行了。麦当劳和肯德基就是生产鸡翅的Factory 工厂模式:客户类和工厂类分开。消费者任何时候需要某种产品,只需向工厂请求即可。消费者无须修改就可以接纳新产品。缺点是当产品修改时,工厂类也要做相应的修改。如:如何创建及如何向客户端提供。2、BUILDER建造者模式MM最爱听的就是“我爱你”这句话了,见到不同地方的MM,要能够用她们的方言跟她说这句话哦,我有一个多种语言翻译机,上面每种语言都有一个按键,见到MM我只要按对应
阅读全文
摘要:/// /// 清除html中的标记,只留下文字。/// /// /// public string ClearHTMLTags(string HTML){ if (string.IsNullOrEmpty(HTML)) return ""; string[] Regexs ={ @"", @"", //@"([\r\n])[\s]+",//换行 @"&(quot|#34);", @"&(amp|#38);", @"&(lt|#60);&qu
阅读全文