hkey key;
cstring skeypath;
skeypath="software\\mingrisoft";
if(regopenkey(hkey_current_user,skeypath,&key)!=0 &®openkey(hkey_current_user,skeypath,&key)!=error_success)
else //已經存在註冊資訊
ntrytime--;
strytime.format("%d",ntrytime);
::regsetvalueex(key,"trytime",0,reg_sz,(unsigned char*)strytime.getbuffer(strytime.getlength()),2);
::regclosekey(key);
messagebox("您還可以試用"+strytime+"次!","系統提示",mb_ok|mb_iconexclamation);
}
禁止使用登錄檔
1 開啟登錄檔,找到hkey current user software microsoft windows currentversion policies system,如果在policies下面沒有system的話,請請在它下面新建一項 主鍵 將其命名為 system 2 然後在右邊空白處新建乙...
c 操作登錄檔
1.讀取指定名稱的登錄檔的值 private string getregistdata string name 以上是讀取的登錄檔中hkey local machine software目錄下的 目錄中名稱為name的登錄檔值 2.向登錄檔中寫資料 private void wtregedit st...
C 登錄檔操作
寫這篇日誌以前不是沒有接觸過c 來操作登錄檔,但這次的體會更深入了一點,故筆記如下。首先可以從 登錄檔reg檔案語法規則 了解下.reg檔案的語法規則,因為很多時候是把.reg裡的 轉換為程式裡的啊。知道語法後,可以根據裡面的 開始逐個轉化為c 了。首先是建立hkey,呼叫regcreatekey或...