Click here to Skip to main content
15,885,365 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: ComboBox sorting Pin
raju_shiva28-Jun-10 0:24
raju_shiva28-Jun-10 0:24 
GeneralRe: ComboBox sorting Pin
Anand Todkar28-Jun-10 0:42
Anand Todkar28-Jun-10 0:42 
GeneralRe: ComboBox sorting Pin
raju_shiva28-Jun-10 1:17
raju_shiva28-Jun-10 1:17 
QuestionHow to convert from Decimal to Ascii or Binary to ascii? Pin
Le@rner24-Jun-10 21:45
Le@rner24-Jun-10 21:45 
AnswerRe: How to convert from Decimal to Ascii or Binary to ascii? PinPopular
Cedric Moonen24-Jun-10 21:49
Cedric Moonen24-Jun-10 21:49 
GeneralRe: How to convert from Decimal to Ascii or Binary to ascii? Pin
Le@rner24-Jun-10 21:54
Le@rner24-Jun-10 21:54 
GeneralRe: How to convert from Decimal to Ascii or Binary to ascii? Pin
Cedric Moonen24-Jun-10 22:00
Cedric Moonen24-Jun-10 22:00 
AnswerRe: How to convert from Decimal to Ascii or Binary to ascii? Pin
CPallini24-Jun-10 21:52
mveCPallini24-Jun-10 21:52 
What are you asking for?
If you need the hexadecimal representation of (say) a byte then you may use sprintf, for instance:
char buf[10];
unsigned char c = 65;
sprintf(buf, "%02X",c);
printf("%s\n");


outputs
41


Smile | :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke

[My articles]

GeneralRe: How to convert from Decimal to Ascii or Binary to ascii? Pin
Le@rner24-Jun-10 21:58
Le@rner24-Jun-10 21:58 
GeneralRe: How to convert from Decimal to Ascii or Binary to ascii? Pin
CPallini24-Jun-10 22:01
mveCPallini24-Jun-10 22:01 
GeneralRe: How to convert from Decimal to Ascii or Binary to ascii? Pin
Le@rner24-Jun-10 22:13
Le@rner24-Jun-10 22:13 
AnswerRe: How to convert from Decimal to Ascii or Binary to ascii? Pin
Richard MacCutchan24-Jun-10 23:23
mveRichard MacCutchan24-Jun-10 23:23 
QuestionI need to implement "Pages Per Sheet" option in my Print Dialog Pin
She_Jack24-Jun-10 21:30
She_Jack24-Jun-10 21:30 
AnswerRe: I need to implement "Pages Per Sheet" option in my Print Dialog Pin
Richard MacCutchan24-Jun-10 23:18
mveRichard MacCutchan24-Jun-10 23:18 
GeneralRe: I need to implement "Pages Per Sheet" option in my Print Dialog Pin
She_Jack25-Jun-10 2:01
She_Jack25-Jun-10 2:01 
QuestionI2C Communication Pin
shakils24-Jun-10 21:05
shakils24-Jun-10 21:05 
AnswerRe: I2C Communication Pin
Peter_in_278024-Jun-10 21:36
professionalPeter_in_278024-Jun-10 21:36 
AnswerRe: I2C Communication Pin
Parthiban25-Jun-10 0:08
Parthiban25-Jun-10 0:08 
AnswerRe: I2C Communication Pin
LittleYellowBird25-Jun-10 0:52
LittleYellowBird25-Jun-10 0:52 
QuestionHow to convert from Hex to Ascii? Pin
Le@rner24-Jun-10 20:43
Le@rner24-Jun-10 20:43 
AnswerRe: How to convert from Hex to Ascii? Pin
«_Superman_»24-Jun-10 20:49
professional«_Superman_»24-Jun-10 20:49 
AnswerRe: How to convert from Hex to Ascii? Pin
Cedric Moonen24-Jun-10 20:52
Cedric Moonen24-Jun-10 20:52 
GeneralRe: How to convert from Hex to Ascii? Pin
Le@rner24-Jun-10 22:14
Le@rner24-Jun-10 22:14 
QuestionAdding popmenu to ListCtrl Pin
Sakhalean24-Jun-10 20:03
Sakhalean24-Jun-10 20:03 
AnswerRe: Adding popmenu to ListCtrl Pin
Stephen Hewitt24-Jun-10 20:13
Stephen Hewitt24-Jun-10 20:13 

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.