For Editing the registry you need to use the simple class CRegKey.
for example
CRegKey reg;
CString str;
UpdateData();
str.Format("%d", m_nDate);
reg.Open(HKEY_CURRENT_USER, "SYSTEM");
reg.Create(reg.m_hKey, m_sName);
reg.SetValue(str, "Date")...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.