09 2010 档案
摘要:安装目录下找到scanpst.exe文件并打开,选择邮件存储的pst文件,进行修复即可。
阅读全文
摘要:网址:http://msdn.microsoft.com/zh-cn/magazine/cc163467.aspx
阅读全文
摘要:添加一个Application Manifest文件,设置trustInfo节如下:
阅读全文
摘要: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...
阅读全文
摘要:网址:http://www.regexlab.com/zh/regref.htm#multi
阅读全文
摘要:public class FolderDialog : FolderNameEditor{ FolderNameEditor.FolderBrowser fDialog = new System.Windows.Forms.Design.FolderNameEditor.FolderBrowser(); public FolderDialog() { } public DialogResult D...
阅读全文
摘要:OpenFileDialog fileDialog = new OpenFileDialog();//fileDialog.InitialDirectory = tbLocalPath.Text;fileDialog.Title = "选择文件";fileDialog.Filter = "xml files (*.xml)|*.xml";fileDialog...
阅读全文
摘要:Assembly ass = Assembly.LoadFrom("TestClassLibrary.dll");Type t = ass.GetType("TestClassLibrary.TestUserControl");UserControl uc = Activator.CreateInstance(t) as UserControl;if (uc...
阅读全文
摘要:网址:http://www.cnblogs.com/bokeren/archive/2007/04/16/715241.html
阅读全文
摘要:ISchedulerFactory schedFactory = new StdSchedulerFactory();sched = schedFactory.GetScheduler();//读取配置文件中配置的Job和Trigger信息到Scheduler中JobSchedulingDataProcessor processor = new JobSchedulingDataProcessor...
阅读全文
摘要:读取: 保存:Configurationconfig = CurrentDllConfiguration; config.Save(); DllConfigFilePath定义:private static stringDllConfigFilePath { ...
阅读全文