程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++builder編程修改注冊表的問題

C++builder編程修改注冊表的問題

編輯:關於C++

RootKey是注冊表的根鍵值,比如運行regedit後看到的HKEY_USERS,HKEY_LOCAL_MACHINE就是RootKey,在TRegIniFile中缺省的RootKey是HKEY_USERS.

下面的例子是TRegistry的,TRegIniFile也差不多

void __fastcall TfrmMainForm::WriteToMyRegistry(int table_count)
{
   //TODO: Add your source code here
   TRegistry *MyRegistry=new TRegistry;
   MyRegistry->RootKey=HKEY_LOCAL_MACHINE;
   //改變缺省Rootkey
   if(!MyRegistry->OpenKey("Software\\Microsoft\\Windows\\Current\
                 Version\\Run",true)) //打開主鍵
   //這樣雙引號裡面的東西就變成了CurrentKey
   {
     Application->MessageBox("注冊表內容無效",
                 "讀取注冊表出錯",MB_ICONERROR);
     MyRegistry->CloseKey();
     delete MyRegistry;
     return;
     }
   MyRegistry->WriteString("myrun","c:\\sthvcd\\sthvcd.exe");
   MyRegistry->CloseKey();
   delete MyRegistry;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved