上一页 1 2 3 4 5 6 7 ··· 9 下一页

2017年7月27日

在.NET中读取嵌入和使用资源文件的方法

摘要: 转http://www.jb51.net/article/84660.htm 本文分别介绍了使用GetManifestResourceStream读取嵌入资源,和使用. resx资源文件嵌入资源,希望对大家有所帮助。 Dotnet中嵌入资源(位图、图标或光标等)有两种方式,一是直接把资源文件加入到项 阅读全文

posted @ 2017-07-27 09:09 _ali 阅读(959) 评论(0) 推荐(0) 编辑

2017年7月26日

T-SQL with关键字 with as 递归循环表

摘要: DECLARE @OrgId nvarchar(36)SET @OrgId = N'901205CA-6C22-4EE7-AE4B-96CC7165D07F'; WITH Childs AS ( SELECT * FROM HROrgRelation WHERE ParentNM = @OrgId UNION ALL SELECT A.* FROM HROrgRelation A, Chi... 阅读全文

posted @ 2017-07-26 10:54 _ali 阅读(175) 评论(0) 推荐(0) 编辑

2017年7月12日

IIS 部署WCF时遇到这么个错:

摘要: 转(http://blog.csdn.net/vic0228/article/details/48806405) 部署WCF时遇到这么个错: "The service cannot be activated because it does not supportASP.NET compatibili 阅读全文

posted @ 2017-07-12 16:32 _ali 阅读(416) 评论(0) 推荐(0) 编辑

2017年7月8日

WCF引用 代码

摘要: 方法1: 方法2: 方法3: 阅读全文

posted @ 2017-07-08 22:41 _ali 阅读(198) 评论(0) 推荐(0) 编辑

2017年7月4日

C#中Windows通用的回车转Tab方法

摘要: 标签: windowsc#textboxbuttondropdownobject 2007-03-28 09:37 2773人阅读 评论(0) 收藏 举报 标签: windowsc#textboxbuttondropdownobject 2007-03-28 09:37 2773人阅读 评论(0)  阅读全文

posted @ 2017-07-04 14:10 _ali 阅读(989) 评论(0) 推荐(0) 编辑

2017年6月30日

HTTP 错误 500.21 - Internal Server Error 解决方案(转)

摘要: 不久前重新安装了Windows7,在安装了VS2010 开发平台之后,将网站发布到IIS,访问发生如下错误: HTTP 错误 500.21 - Internal Server Error处理程序“NickLeeCallbackHandler”在其模块列表中有一个错误模块“ManagedPipelin 阅读全文

posted @ 2017-06-30 11:50 _ali 阅读(491) 评论(0) 推荐(0) 编辑

2017年6月27日

wcf 开发 1

摘要: 1、创建wcf应用程序 2、生成服务,启动 3、使用工具生成 文件如下: 4、新增加winform程序项目,并添加文件 service1.cs 修改app.config 5、代码调用 阅读全文

posted @ 2017-06-27 17:10 _ali 阅读(148) 评论(0) 推荐(0) 编辑

dev 转自

摘要: 1.隐藏最上面的GroupPanel gridView1.OptionsView.ShowGroupPanel=false; 2.得到当前选定记录某字段的值 sValue=Table.Rows[gridView1.FocusedRowHandle][FieldName].ToString(); 3.数据只读 gridView1.OptionsBehavior.Editable=... 阅读全文

posted @ 2017-06-27 08:46 _ali 阅读(262) 评论(0) 推荐(0) 编辑

2017年6月16日

SQL查询父节点下的所有子节点(包括子节点下的子节点,无限子节点)

摘要: -->Title:Generating test data -->Author:wufeng4552 -->Date :2009-09-30 08:52:38 set nocount on if object_id('tb','U')is not null drop table tb go create table tb(ID int, ParentID int) insert into tb ... 阅读全文

posted @ 2017-06-16 19:24 _ali 阅读(4484) 评论(0) 推荐(0) 编辑

2017年6月14日

C# 自定义控件摘记

摘要: C# 自定义控件属性 现有自定义控件,内有一textbox控件 TextBox1。控件有一属性 Value 定义为 [BrowsableAttribute(true)] [BindableAttribute(true)] public string Value { get{return TextBo 阅读全文

posted @ 2017-06-14 10:45 _ali 阅读(776) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 9 下一页

导航