데이터 읽기!


DWORD dwType = REG_SZ;

DWORD dwSize = 128;

HKEY hKey;

TCHAR RecentUpdata[128] = { 0, };

TCHAR CurrentUpdata[ 128 ] = { 0, };


LONG lResult = RegOpenKeyEx(HKEY_LOCAL_MACHINE , "SOFTWARE\\H7" , 0 , KEY_READ , &hKey);
if( lResult == ERROR_SUCCESS )

{

RegQueryValueEx( hKey, "Current Version", NULL, &dwType, ( LPBYTE )CurrentUpdata, &dwSize );

RegQueryValueEx( hKey, "Recent Version", NULL, &dwType, ( LPBYTE )RecentUpdata, &dwSize );   

}


Snap1.bmp


'NativeCode > mfc' 카테고리의 다른 글

MFC Exception 클래스 확장하기  (0) 2010.03.18
TrackPopup  (0) 2010.03.18
Registry 값 쓰기  (0) 2010.03.18
Static Control 일반적 내용  (0) 2010.03.18
Static Control Font 설정  (0) 2010.03.18

+ Recent posts