CWinApp::SetRegistryKey

发表于:2007-07-01来源:作者:点击数: 标签:
CWinApp::SetRegistryKey void SetRegistryKey( LPCTSTR lpszRegistryKey ); void SetRegistryKey( UINT nIDRegistryKey ); 参数 lpszRegistryKey 字符串指针,包含了键的名字。 nIDRegistryKey 注册表中键的ID/索引。 注释 这个函数将应用程序的设置保存在
 

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_USERSoftware<公司名><应用程序名><section name><value name>.

|  | 

参见 , , , ,


原文转自:http://www.ltesting.net