获取显卡BIOS更新日期----读注册表

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();//关闭注册表

 

 

转载:http://hi.baidu.com/_ynbg/blog/item/142100ec89d9814279f055c2.html

你可能感兴趣的:(access,c)