12 2010 档案

摘要:c# winform comboBox动态下拉列表,comboBox动态绑定数据库里的数据 [代码]或者[代码] 阅读全文
posted @ 2010-12-21 10:35 ccczqh 阅读(1330) 评论(0) 推荐(0) 编辑
摘要:SQLDMO For C#09. Oct, 2006 by admin 0 Comments Download SQLDMO.zipMany times I have had a need to get at SQL Server details in my applications. Until recently I had to use API calls and bastardized ADO calls to get the information I needed. Now we have SQLDMO (SQL Distributed Management Objects) . A 阅读全文
posted @ 2010-12-20 11:10 ccczqh 阅读(274) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/candywyq/archive/2007/07/24/830021.html 1、从字符串中提取子串 StringBuilder 类没有支持子串的方法,因此必须用String类来提取。 string mystring="My name is ynn."; //Displays "name is ynn." Console.WriteLine(mystring.Substring( 3 )); //Displays "ynn" Console.WriteLine(mystring.Substring( 11,3 )); 2、比较字符串 String 阅读全文
posted @ 2010-12-11 11:16 ccczqh 阅读(226) 评论(0) 推荐(0) 编辑
摘要:WebMethod有6个属性:.Description.EnableSession.MessageName.TransactionOption.CacheDuration.BufferResponse 1) Description:是对webservice方法描述的信息。就像webservice方法的功能注释,可以让调用者看见的注释。C#:[WebMethod(Description="Author:ZFive5 Function:Hello World") ]public string HelloWorld(){ return "Hello World";}WSDL:- portType 阅读全文
posted @ 2010-12-11 10:29 ccczqh 阅读(221) 评论(0) 推荐(0) 编辑
摘要:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1privatevoidfrmMain_Load(objectsender,EventArgse)2{3Liststringlist=newListstring();4list.Add("SubItem1");5list.Add("SubItem2");6list.Add("SubItem3");78ContextMenucm=newContextMenu();9this.ContextM 阅读全文
posted @ 2010-12-07 18:53 ccczqh 阅读(886) 评论(0) 推荐(0) 编辑
摘要:private void listView_Validated(object sender, EventArgs e) { if (listView.FocusedItem != null) { listView.FocusedItem.BackColor = SystemColors.Highlight; listView.FocusedItem.ForeColor = Color.White; } } private void listView_ItemSelectionChanged(object sender, ListViewItemSelectionChangedEventArgs 阅读全文
posted @ 2010-12-07 15:21 ccczqh 阅读(1415) 评论(0) 推荐(0) 编辑
摘要://@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@22 listView1.View = View.Details;//listView显示方式 listView1.Columns.Add("进程名");//增加项目标题 listView1.Columns.Add("路径");//增加项目标题 listView1.Columns.Add("进程名");//增加项目标题 //添加一行项目 listView1.Items.Add("name", "QQ.exe", 0); listView1.Items["name"].SubItems.Add("c:\\QQ.exe"); l 阅读全文
posted @ 2010-12-07 15:03 ccczqh 阅读(3071) 评论(0) 推荐(0) 编辑
摘要:刚学JAVA和C#时,对于用惯了C++中的全局变量的我来说,很是不习惯:所有的东西都在类里面,没有可以现成的存放全局变量的地方。但有位大虾教我说可以通过定义类实现全局变量的功能,我尝试了,记录下我的学习心得。publicclassGlobalVariable{//******************************************************************//*Hashtable用于存放全局变量,由key和value成对实现。//**************************************************************** 阅读全文
posted @ 2010-12-05 20:24 ccczqh 阅读(348) 评论(0) 推荐(0) 编辑
摘要:原文出自:http://www.rainsts.net/article.asp?id=304多数时候我们通过 "添加 Web 引用..." 创建客户端代理类的方式调用WebService,但在某些情况下我们可能需要在程序运行期间动态调用一个未知的服务。在 .NET Framework 的 System.Web.Services.Description 命名空间中有我们需要的东西。具体步骤:1. 从... 阅读全文
posted @ 2010-12-02 15:22 ccczqh 阅读(254) 评论(0) 推荐(0) 编辑
摘要:最近几天,在做项目的过程中,写了一些存储过程用来处理一些业务逻辑,发现在数据库中只有很少几个存储过程,而我这边就一个很小的模块都要涉及到几张表的操作,写存储过程是最方便的,而且效率也是最高的。于是,我问了一下这边的负责人,他们之前开发的那些模块,怎么没有写几个存储过程?而负责人的给我的回答是,以后别人来维护,出现问题时,跟踪调试写存储过程不好调试。我不敢苟同这种说法。  既然项目负责人不让用存储过... 阅读全文
posted @ 2010-12-02 15:21 ccczqh 阅读(239) 评论(0) 推荐(0) 编辑
摘要:1、创建事务的结构SqlConnection sqlConnection = new SqlConnection(); ...初始化连接 // 开启事务 SqlTransaction sqlTransaction = sqlConnection.BeginTransaction(); // 将事务应用于Command SqlCommand sqlCommand = new ... 阅读全文
posted @ 2010-12-02 15:17 ccczqh 阅读(221) 评论(0) 推荐(0) 编辑