09 2010 档案

摘要:安装目录下找到scanpst.exe文件并打开,选择邮件存储的pst文件,进行修复即可。 阅读全文
posted @ 2010-09-26 15:19 风中的云 阅读(1030) 评论(0) 推荐(0)
摘要:网址:http://msdn.microsoft.com/zh-cn/magazine/cc163467.aspx 阅读全文
posted @ 2010-09-25 16:30 风中的云 阅读(144) 评论(0) 推荐(0)
摘要:添加一个Application Manifest文件,设置trustInfo节如下: 阅读全文
posted @ 2010-09-20 15:42 风中的云 阅读(657) 评论(0) 推荐(0)
摘要:OleDbCommand cmd = conn.CreateCommand();cmd.CommandType = CommandType.Text;cmd.CommandText = "SELECT * FROM song WHERE 1=0";OleDbDataAdapter da = new OleDbDataAdapter(cmd);DataSet ds = new D... 阅读全文
posted @ 2010-09-19 17:37 风中的云 阅读(736) 评论(0) 推荐(0)
摘要:网址:http://www.regexlab.com/zh/regref.htm#multi 阅读全文
posted @ 2010-09-19 16:47 风中的云 阅读(106) 评论(0) 推荐(0)
摘要:public class FolderDialog : FolderNameEditor{ FolderNameEditor.FolderBrowser fDialog = new System.Windows.Forms.Design.FolderNameEditor.FolderBrowser(); public FolderDialog() { } public DialogResult D... 阅读全文
posted @ 2010-09-19 11:00 风中的云 阅读(209) 评论(0) 推荐(0)
摘要:OpenFileDialog fileDialog = new OpenFileDialog();//fileDialog.InitialDirectory = tbLocalPath.Text;fileDialog.Title = "选择文件";fileDialog.Filter = "xml files (*.xml)|*.xml";fileDialog... 阅读全文
posted @ 2010-09-19 10:48 风中的云 阅读(264) 评论(0) 推荐(0)
摘要:Assembly ass = Assembly.LoadFrom("TestClassLibrary.dll");Type t = ass.GetType("TestClassLibrary.TestUserControl");UserControl uc = Activator.CreateInstance(t) as UserControl;if (uc... 阅读全文
posted @ 2010-09-18 09:25 风中的云 阅读(158) 评论(0) 推荐(0)
摘要:网址:http://www.cnblogs.com/bokeren/archive/2007/04/16/715241.html 阅读全文
posted @ 2010-09-17 15:56 风中的云 阅读(140) 评论(0) 推荐(0)
摘要:ISchedulerFactory schedFactory = new StdSchedulerFactory();sched = schedFactory.GetScheduler();//读取配置文件中配置的Job和Trigger信息到Scheduler中JobSchedulingDataProcessor processor = new JobSchedulingDataProcessor... 阅读全文
posted @ 2010-09-17 15:35 风中的云 阅读(607) 评论(0) 推荐(0)
摘要:读取:  保存:Configurationconfig = CurrentDllConfiguration; config.Save(); DllConfigFilePath定义:private static stringDllConfigFilePath {           ... 阅读全文
posted @ 2010-09-17 15:26 风中的云 阅读(779) 评论(0) 推荐(0)