Click here to Skip to main content
15,868,051 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Convert Problem CString to double Pin
Maximilien18-Sep-07 7:13
Maximilien18-Sep-07 7:13 
AnswerRe: Convert Problem CString to double [modified] Pin
DevMentor.org18-Sep-07 8:08
DevMentor.org18-Sep-07 8:08 
AnswerRe: Convert Problem CString to double Pin
Mark Salsbery18-Sep-07 9:03
Mark Salsbery18-Sep-07 9:03 
Question[Winsock] Get the address of the internet connected NIC Pin
ioctl5118-Sep-07 5:32
ioctl5118-Sep-07 5:32 
AnswerRe: [Winsock] Get the address of the internet connected NIC Pin
DevMentor.org18-Sep-07 6:24
DevMentor.org18-Sep-07 6:24 
AnswerRe: [Winsock] Get the address of the internet connected NIC Pin
DevMentor.org18-Sep-07 6:37
DevMentor.org18-Sep-07 6:37 
GeneralRe: [Winsock] Get the address of the internet connected NIC Pin
ioctl5118-Sep-07 21:29
ioctl5118-Sep-07 21:29 
QuestionRead a string from registry Pin
john563218-Sep-07 4:51
john563218-Sep-07 4:51 
I want to read string from regitsry and I wrote the code for it .Pls tell me what is wrong with it.

HKEY hKey;
DWORD MaxValue=0;
DWORD dwValue=0;
DWORD EADType=0;
CString szIdentityName;
CString szPath;
szPath=_T("Identities\\")+szIdentityID;//szIdentityID is name of identity

//Open Registry key
LONG lRetVal = RegOpenKeyEx(HKEY_CURRENT_USER,szPath,0,KEY_QUERY_VALUE,&hKey);

if( lRetVal == ERROR_SUCCESS)
{
char szString[255];
LONG lReturnCode = RegQueryValueEx( hKey,_T("Username"),0,&EADType,(BYTE *)szString,&MaxValue);

if( lReturnCode!= ERROR_SUCCESS)
::RegCloseKey(hKey);// Close key
else
::RegCloseKey(hKey);

szIdentityName.Format(_T("%x"),dwValue);
}

The string I am getting is NULL.
AnswerRe: Read a string from registry Pin
Mark Salsbery18-Sep-07 5:09
Mark Salsbery18-Sep-07 5:09 
GeneralRe: Read a string from registry Pin
led mike18-Sep-07 6:36
led mike18-Sep-07 6:36 
GeneralRe: Read a string from registry Pin
Mark Salsbery18-Sep-07 6:42
Mark Salsbery18-Sep-07 6:42 
GeneralRe: Read a string from registry Pin
led mike18-Sep-07 6:46
led mike18-Sep-07 6:46 
GeneralRe: Read a string from registry Pin
David Crow18-Sep-07 6:57
David Crow18-Sep-07 6:57 
GeneralRe: Read a string from registry Pin
Mark Salsbery18-Sep-07 9:23
Mark Salsbery18-Sep-07 9:23 
QuestionRe: Read a string from registry Pin
David Crow18-Sep-07 5:11
David Crow18-Sep-07 5:11 
Questionquestion on static creating multi-views Pin
King Tran18-Sep-07 4:18
King Tran18-Sep-07 4:18 
AnswerRe: question on static creating multi-views Pin
Iain Clarke, Warrior Programmer18-Sep-07 4:22
Iain Clarke, Warrior Programmer18-Sep-07 4:22 
GeneralRe: question on static creating multi-views Pin
King Tran19-Sep-07 3:43
King Tran19-Sep-07 3:43 
QuestionAdding Libraries Pin
pds847518-Sep-07 3:51
pds847518-Sep-07 3:51 
AnswerRe: Adding Libraries Pin
baerten18-Sep-07 4:16
baerten18-Sep-07 4:16 
QuestionJava vs. C++ Pin
LCI18-Sep-07 3:23
LCI18-Sep-07 3:23 
AnswerRe: Java vs. C++ Pin
David Crow18-Sep-07 4:05
David Crow18-Sep-07 4:05 
GeneralRe: Java vs. C++ Pin
LCI18-Sep-07 4:09
LCI18-Sep-07 4:09 
GeneralRe: Java vs. C++ Pin
David Crow18-Sep-07 4:23
David Crow18-Sep-07 4:23 
GeneralRe: Java vs. C++ Pin
bob1697218-Sep-07 6:50
bob1697218-Sep-07 6:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.