一杯凉水

我求的只是几滴水,神给的却是一杯.神的恩典总是这样丰丰富富,超过我所求所想的.感谢主!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

注册表的写入和读取

Posted on 2005-12-06 17:49  摩纳哥  阅读(251)  评论(0编辑  收藏  举报
‘写入注册表
private void Button3_Click(object sender, System.EventArgs e)
  {
   try
   {
    Microsoft.Win32.RegistryKey res ;
    res = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@"SOFTWARE\test2",true);
    //res =Microsoft.Win32.Registry.
    if (res == null)
    {
     try
     {
      res = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(@"SOFTWARE\test2");
     }
     catch (Exception ee)
     {
      this.exeInfo.Text = ee.Message.ToString();
     }
    
    }
   
    res.SetValue("test",this.txtWrite.Text );
    this.exeInfo.Text = "pass!";
   }
   catch(Exception es)
   {
   this.exeInfo.Text = es.Message.ToString();
   }
  }
’读取注册表
private void Button4_Click(object sender, System.EventArgs e)
  {
   try
   {
    Microsoft.Win32.RegistryKey res;
    res = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@"SOFTWARE\test2",true);
    this.txtRead.Text= res.GetValue("test").ToString() ;
   }
   catch(Exception ee)
   {
    this.exeInfo.Text = ee.Message.ToString();
   }
  }