悟生慧

 
上一页 1 2 3 4 5 6 ··· 27 下一页

2013年8月15日

C#去掉list集合中的重复数据

摘要: List conList= new List(); List listII = new List(); int m = 0; for (int i = 0; i < conList.Count; i++) { string i_value = (string)conList[i]; for (int j = 0; j < conList.Count; j++) { ... 阅读全文

posted @ 2013-08-15 16:34 悟生慧 阅读(17522) 评论(1) 推荐(0) 编辑

C#获取操作系统是32位或64位的代码

摘要: 注意需添加引用System.Management)public static string Distinguish64or32System(){try{string addressWidth = String.Empty;ConnectionOptions mConnOption = new ConnectionOptions();ManagementScope mMs = new ManagementScope("\\\\localhost", mConnOption);ObjectQuery mQuery = new ObjectQuery("select A 阅读全文

posted @ 2013-08-15 16:30 悟生慧 阅读(1007) 评论(0) 推荐(0) 编辑

2013年8月2日

C# XSD校验XML文件的代码

摘要: /// /// XSD文件校验XML /// /// public ArrayList ECSValueValidation() { ArrayList al = new ArrayList(); try { //doc是XmlDocument对象 doc.Load(m_xmlURL); } catch (System.Exception ex) ... 阅读全文

posted @ 2013-08-02 10:55 悟生慧 阅读(1034) 评论(0) 推荐(0) 编辑

C# 队列集合的使用

摘要: using System; using System.Collections.Generic; using System.Text; using System.Collections; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Queue qu = new Queue(); Queue qu2 = new Queue(); foreach (int... 阅读全文

posted @ 2013-08-02 10:49 悟生慧 阅读(481) 评论(0) 推荐(0) 编辑

根据Excel线程句柄得到ID并且关闭进程

摘要: [System.Runtime.InteropServices.DllImport("User32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)] private static extern int GetWindowThreadProcessId(IntPtr hwnd, out int ID); private void Kill(Microsoft.Office.Interop.Excel.Application excel) { IntPtr t ... 阅读全文

posted @ 2013-08-02 10:45 悟生慧 阅读(2155) 评论(1) 推荐(0) 编辑

使用timer控件控制进度条

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace ECS.Simulate{ public partial class FrmProgress : Form { public FrmProgress() { InitializeComponent(); this.CenterToParent(); progres 阅读全文

posted @ 2013-08-02 10:33 悟生慧 阅读(854) 评论(0) 推荐(0) 编辑

2013年4月18日

C#操作XmlDocument对象 报缺少根节点 一一道来

摘要: C# 操作XmlDocument文档1.第一步选择文件目录string FileName=string.Empty;SaveFileDialog sfd=new SaveFileDialog();if(sfd.ShowDialog() == DialogResult.OK){ FileName = sfd.FileName; }FileStream fs;//判断文件是否存在if(!File.Exists(FileName)){ fs = File.Create(FileName); fs.Close();}2.创建文件的声明XmlDocument xmlDoc = new XmlDocume 阅读全文

posted @ 2013-04-18 15:34 悟生慧 阅读(1264) 评论(0) 推荐(0) 编辑

2013年3月19日

Visual Studio 2008 响应很慢 是怎么回事?

摘要: 具体是新安装的系统Windows XP SP2打完最新所有补丁IE6 WMP10安装Visual Studio 2008 Pro版本。打开新建的工程10秒左右界面没响应。无法切换设计模式或者键入代码调试时程序正常退出后也是10秒左右界面没有响应。使用console App Winform一样。webapp正常。或者直接kill vshost进程,可以立即进入界面。所谓响应是指在界面键入字符可以立即看到。目前解决方案。取消Visual Studio Visual host支持。具体在工程的属性debug里面最后一项。 阅读全文

posted @ 2013-03-19 19:35 悟生慧 阅读(432) 评论(0) 推荐(0) 编辑

2013年3月13日

DSOFRAMER使用小结

摘要: 开发环境: VS2008 DOSFRAMER版本为1.3 MS OFFICE2003+SP3 最近一直想用VC#2008做个内嵌WORD/OFFICE的WINFORM,目前主要有以下解决途径: 1、直接通过API把WORD/OFFICE的窗口句柄给放到WINFORM中(较为复杂); 2、通过WEB BROWSER; 3、利用DSOFRAMER。 本人都测试了一下,觉得DSOFRAMER更符合自己的愿望,故决定使用DSOFRAMER来实现。 操作步骤: 1、从微软网站下载DsoFramer_KB311765_x86.exe,解开将得到dsoframer.ocx; 2、把ds... 阅读全文

posted @ 2013-03-13 15:43 悟生慧 阅读(33590) 评论(1) 推荐(1) 编辑

2013年1月30日

Visual Studio 2010 创建的WCF服务 第一个应用

摘要: 原文转载:http://www.cnblogs.com/finehappy/archive/2009/12/20/1628385.html在这个例子中我们将使用VS 2010 U 创建一个WCF服务,其中会了解[DataContract] [ServiceContract] 等特性。 内置的 WCFSVCHost ,并使用“WCF测试客户端”来测试我们创建的服务。注意下面的所有类、接口及方法都添加了public 的访问级别。一,建立一个WCF服务库创建一个WCF服务库项目,在解决方案中会自动为我们生成两个类文件“IService.cs”和“Service.cs”。这两个类文件是两个WCF示例文 阅读全文

posted @ 2013-01-30 17:16 悟生慧 阅读(2556) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 27 下一页

导航