Click here to Skip to main content
15,914,221 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralDialogs data change Pin
smack_2k221-Oct-04 9:55
smack_2k221-Oct-04 9:55 
GeneralRe: Dialogs data change Pin
David Crow21-Oct-04 10:02
David Crow21-Oct-04 10:02 
GeneralRe: Dialogs data change Pin
Maximilien21-Oct-04 10:07
Maximilien21-Oct-04 10:07 
GeneralRe: Dialogs data change Pin
Timothy Grabrian21-Oct-04 13:49
professionalTimothy Grabrian21-Oct-04 13:49 
GeneralRe: Dialogs data change Pin
smack_2k223-Oct-04 0:18
smack_2k223-Oct-04 0:18 
GeneralHELP: socket upload file Pin
antonimasso21-Oct-04 9:10
antonimasso21-Oct-04 9:10 
GeneralCode data base Pin
embeddesign21-Oct-04 8:03
embeddesign21-Oct-04 8:03 
GeneralRe: Code data base Pin
David Crow21-Oct-04 8:19
David Crow21-Oct-04 8:19 
embeddesign wrote:
For example I am searching for a simple function that converts hex to binary...

Converting from base-16 to base-2 is a two-step process. First convert the base-16 number to base-10 using strtol(), and then convert that result to base-2 using itoa(). Something like:

char *pszBase16 = "23f06e41", *end;
long lBase10 = strtol(pszBase16, &end, 16);
char szBase2[64];
itoa(lBase10, szBase2, 2);



"Opinions are neither right nor wrong. I cannot change your opinion of me. I can, however, change what influences your opinion." - David Crow


GeneralI deleted a class that I did not need Pin
Tom Wright21-Oct-04 7:21
Tom Wright21-Oct-04 7:21 
GeneralRe: I deleted a class that I did not need Pin
David Crow21-Oct-04 7:33
David Crow21-Oct-04 7:33 
GeneralRe: I deleted a class that I did not need Pin
Tom Wright21-Oct-04 7:44
Tom Wright21-Oct-04 7:44 
GeneralRe: I deleted a class that I did not need Pin
David Crow21-Oct-04 7:46
David Crow21-Oct-04 7:46 
GeneralRe: I deleted a class that I did not need Pin
Tom Wright21-Oct-04 7:50
Tom Wright21-Oct-04 7:50 
GeneralRe: I deleted a class that I did not need Pin
C_M_21-Oct-04 21:49
C_M_21-Oct-04 21:49 
GeneralRe: I deleted a class that I did not need Pin
Tom Wright22-Oct-04 4:10
Tom Wright22-Oct-04 4:10 
GeneralMFC Check Box Pin
missnazar21-Oct-04 6:49
missnazar21-Oct-04 6:49 
GeneralRe: MFC Check Box Pin
David Crow21-Oct-04 7:35
David Crow21-Oct-04 7:35 
GeneralParent repainting problem Pin
Phil.Benson21-Oct-04 6:36
professionalPhil.Benson21-Oct-04 6:36 
GeneralRe: Parent repainting problem Pin
Joaquín M López Muñoz21-Oct-04 9:10
Joaquín M López Muñoz21-Oct-04 9:10 
GeneralRe: Parent repainting problem Pin
Phil.Benson21-Oct-04 21:52
professionalPhil.Benson21-Oct-04 21:52 
QuestionMessageBox class with CButtons? Pin
Anonymous21-Oct-04 6:31
Anonymous21-Oct-04 6:31 
AnswerRe: MessageBox class with CButtons? Pin
Joaquín M López Muñoz21-Oct-04 9:09
Joaquín M López Muñoz21-Oct-04 9:09 
Questionhow to find out if current session is a 'remote' session? Pin
dirtchamber21-Oct-04 6:02
dirtchamber21-Oct-04 6:02 
AnswerRe: how to find out if current session is a 'remote' session? Pin
Blake Miller22-Oct-04 4:33
Blake Miller22-Oct-04 4:33 
GeneralDetect Process Start Pin
wreck2721-Oct-04 5:46
wreck2721-Oct-04 5:46 

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.