CString strPath="HARDWARE//DESCRIPTION//System";
CRegKey regkey;//定义注册表类对象
LONG lResult;//LONG型变量-反应结果 //打开注册表键
lResult=regkey.Open(HKEY_LOCAL_MACHINE,LPCTSTR(strPath),KEY_ALL_ACCESS);
if (lResult!=ERROR_SUCCESS)
{ AfxMessageBox("错误:无法查询有关的注册表信息"); return; }
char chVideoBiosDate[50];
DWORD dwSize=50;
regkey.QueryValue((char*)chVideoBiosDate,"VideoBiosDate",&dwSize);//获取 VendorIdentifier字段值 m_strDate=chVideoBiosDate;
UpdateData(FALSE);
regkey.Close();//关闭注册表