摘要: 亮碧思 阅读全文
posted @ 2014-07-26 21:38 纵一苇之所如- 阅读(3) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2014-07-26 21:10 纵一苇之所如- 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Dll破解 注册码 阅读全文
posted @ 2014-04-28 22:57 纵一苇之所如- 阅读(4752) 评论(1) 推荐(2) 编辑
摘要: List AllFilesPath = new List(); if (filesOrDirectoriesPaths.Length > 0) // get all files path { for (int i = 0; i < filesOrDirectoriesPaths.Length; i++) { if (File.Exists(@strZipTopDirectoryPath + filesOrDire... 阅读全文
posted @ 2014-01-12 21:33 纵一苇之所如- 阅读(215) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-10-27 21:56 纵一苇之所如- 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-08-09 10:18 纵一苇之所如- 阅读(2) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;namespace AdminTools{ public static class FileTools { [DllImport("kernel32.dll")] private static extern IntPtr _lopen(string lpPathName, int iReadWrite); [DllImport("kernel... 阅读全文
posted @ 2013-08-08 14:11 纵一苇之所如- 阅读(380) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-08-02 20:28 纵一苇之所如- 阅读(0) 评论(0) 推荐(0) 编辑
摘要: /// /// C#运行bat文件 /// /// private void RunBat(string batPath) { Process pro = new Process(); FileInfo file = new FileInfo(batPath); //设置启动进程的初始目录 pro.StartInfo.WorkingDirectory = file.Directory.FullName; //... 阅读全文
posted @ 2013-07-31 11:18 纵一苇之所如- 阅读(447) 评论(0) 推荐(0) 编辑
摘要: ==============C#=====================string[] v = { "01", "02" }; string[] txt = { "测试一", "测试二" }; Dictionary dic = new Dictionary(); for (int i = 0; i < 2; i++) { dic.Add(v[i], txt[i]); } BindingSource bs = new BindingSource(); bs.DataSource = dic; checked 阅读全文
posted @ 2013-07-24 09:28 纵一苇之所如- 阅读(1758) 评论(0) 推荐(0) 编辑