杯具程序员
为系统而生,为框架而死,为debug奋斗一辈子;
     吃符号的亏,上大小写的当,最后死在需求上。
 RegistryKey hklm = Application.LocalMachine;
 RegistryKey run = hklm.CreateSubKey(@"SOFTWARE\Microsoft\Windows\Current\Version\Run");
 try
 {
 run.SetValue("tractor.exe","D:\\tractor.exe");
 MessageBox.Show("注册表添加成功!!","提示",MessageBoxButton.OK, MessageBoxIcon.Information);
hklm.Close();
}
catch(Exception ee)
{
MessageBox.Show(my.Message.ToString(),"提示",MessageBoxButton.OK, MessageBoxIcon.Error);
}
posted on 2011-07-14 13:51  杯具程序员  阅读(563)  评论(0编辑  收藏  举报