CWinApp::SetRegistryKey

类别:VC语言 点击:0 评论:0 推荐:
  CWinApp::SetRegistryKey

void SetRegistryKey( LPCTSTR lpszRegistryKey );

void SetRegistryKey( UINT nIDRegistryKey );

参数

lpszRegistryKey

字符串指针,包含了键的名字。

nIDRegistryKey

注册表中键的ID/索引。

注释

这个函数将应用程序的设置保存在注册表而不是INI文件中。这个函数设置m_pszRegistry Key,它被CWinApp的成员函数GetProfileInt,GetProfileString,WriteProfileInt和WriteProfileString使用。如果调用了这个函数,最近使用(MRU)的文件也被保存到注册表中。通常注册表的键为公司的名字。它保存在如下形式的键中:HKEY_CURRENT_USER\Software\<公司名>\<应用程序名>\<section name>\<value name>.

CWinApp Overview |  Class Members |  Hierarchy Chart

参见 CWinApp::InitInstance, CWinApp::GetProfileInt, CWinApp::GetProfileString, CWinApp::WriteProfileInt, CWinApp::WriteProfileString

本文地址:http://com.8s8s.com/it/it2675.htm