悟生慧

 

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) 编辑

导航