Click here to Skip to main content
15,890,372 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Message Map Handlers Pin
led mike19-Mar-09 7:31
led mike19-Mar-09 7:31 
AnswerRe: Message Map Handlers Pin
Stuart Dootson19-Mar-09 8:25
professionalStuart Dootson19-Mar-09 8:25 
GeneralRe: Message Map Handlers Pin
ForNow19-Mar-09 12:15
ForNow19-Mar-09 12:15 
GeneralRe: Message Map Handlers Pin
Stuart Dootson19-Mar-09 12:35
professionalStuart Dootson19-Mar-09 12:35 
GeneralRe: Message Map Handlers Pin
ForNow19-Mar-09 17:05
ForNow19-Mar-09 17:05 
QuestionRegQueryValueEx Pin
siva45519-Mar-09 6:35
siva45519-Mar-09 6:35 
AnswerRe: RegQueryValueEx Pin
CPallini19-Mar-09 7:26
mveCPallini19-Mar-09 7:26 
GeneralRe: RegQueryValueEx Pin
Mattias G19-Mar-09 13:28
Mattias G19-Mar-09 13:28 
Yes, there's a useful sample on that page, if you're interested in getting a data object with an unknown size. But if you want to read a C string and convert that string to a CString, you are probably better off with this:

<br />
BOOL ReadStringFromMysterioiusOSSource(char* destination, int maxChar);<br />
<br />
// ...<br />
<br />
CString myValue;<br />
char buf[438];<br />
ReadStringFromMysterioiusOSSource(buf, 438);<br />
myValue = buf;<br />


(If you really need to use a OS function, just use the CString's assignment operator)
GeneralRe: RegQueryValueEx Pin
CPallini19-Mar-09 22:28
mveCPallini19-Mar-09 22:28 
QuestionAPI for getting the MAC address of the LAN card using c or c++ Pin
optical12319-Mar-09 6:08
optical12319-Mar-09 6:08 
QuestionRe: API for getting the MAC address of the LAN card using c or c++ Pin
David Crow19-Mar-09 6:31
David Crow19-Mar-09 6:31 
AnswerRe: API for getting the MAC address of the LAN card using c or c++ Pin
optical12319-Mar-09 18:41
optical12319-Mar-09 18:41 
Questionradio button in a propertysheet Pin
Rakesh519-Mar-09 2:52
Rakesh519-Mar-09 2:52 
QuestionRe: radio button in a propertysheet Pin
David Crow19-Mar-09 3:08
David Crow19-Mar-09 3:08 
AnswerRe: radio button in a propertysheet Pin
led mike19-Mar-09 4:14
led mike19-Mar-09 4:14 
AnswerRe: radio button in a propertysheet Pin
Michael Schubert19-Mar-09 3:15
Michael Schubert19-Mar-09 3:15 
AnswerRe: radio button in a propertysheet Pin
#realJSOP19-Mar-09 3:33
mve#realJSOP19-Mar-09 3:33 
GeneralRe: radio button in a propertysheet Pin
Michael Schubert19-Mar-09 3:36
Michael Schubert19-Mar-09 3:36 
GeneralRe: radio button in a propertysheet Pin
#realJSOP19-Mar-09 4:53
mve#realJSOP19-Mar-09 4:53 
AnswerRe: radio button in a propertysheet [modified] Pin
Code-o-mat19-Mar-09 3:43
Code-o-mat19-Mar-09 3:43 
AnswerRe: radio button in a propertysheet Pin
Steve Mayfield19-Mar-09 6:26
Steve Mayfield19-Mar-09 6:26 
AnswerRe: radio button in a propertysheet Pin
«_Superman_»19-Mar-09 19:10
professional«_Superman_»19-Mar-09 19:10 
QuestionDoubt in function pointer Pin
Cool_Phillip19-Mar-09 2:42
Cool_Phillip19-Mar-09 2:42 
AnswerRe: Doubt in function pointer [modified] Pin
Cedric Moonen19-Mar-09 2:58
Cedric Moonen19-Mar-09 2:58 
AnswerRe: Doubt in function pointer Pin
David Crow19-Mar-09 2:59
David Crow19-Mar-09 2:59 

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.