2007年8月9日 星期四

系統登錄檔的讀寫

要額外using的有: Microsoft.Win32
 

寫入登錄檔
RegistryKey key=Microsoft.Win32.Registry.ClassesRoot.CreateSubKey("ADONETDB");
key.SetValue("cnstr",text1.Text);

讀取登入檔
RegistryKey key=Microsoft.Win32.Registry.ClassesRoot.CreateSubKey("ADONETDB");
text1.Text=key.GetValue("cnstr").ToString();
 

沒有留言:

張貼留言