Click here to Skip to main content
16,007,443 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: DirectShow filter issue Pin
Alexander M.,1-Jul-05 10:52
Alexander M.,1-Jul-05 10:52 
GeneralStatusBar problem Pin
AnsGe1-Jul-05 4:22
AnsGe1-Jul-05 4:22 
GeneralRe: StatusBar problem Pin
Blake Miller1-Jul-05 7:20
Blake Miller1-Jul-05 7:20 
Generalhex to decimal conversion Pin
llp00na1-Jul-05 0:38
llp00na1-Jul-05 0:38 
GeneralRe: hex to decimal conversion Pin
kakan1-Jul-05 0:41
professionalkakan1-Jul-05 0:41 
GeneralRe: hex to decimal conversion Pin
kakan1-Jul-05 0:53
professionalkakan1-Jul-05 0:53 
GeneralRe: hex to decimal conversion Pin
llp00na1-Jul-05 1:36
llp00na1-Jul-05 1:36 
GeneralRe: hex to decimal conversion Pin
kakan1-Jul-05 2:31
professionalkakan1-Jul-05 2:31 
If you can format the string into a string containing 2+2+2 hex characters all the time, then you can use this way to get the values all at once:

int r,g,b;

// Create a test string:
char hex2[10];
strcpy(hex2, "0f05ff");

sscanf(hex2, "%02x%02x%02x", &r, &g, &b);

// Result: r == 15, g == 5, b == 255

It's tested and works.
Later
kakan

GeneralRe: hex to decimal conversion Pin
Chris Losinger1-Jul-05 2:44
professionalChris Losinger1-Jul-05 2:44 
GeneralRe: hex to decimal conversion Pin
llp00na1-Jul-05 4:53
llp00na1-Jul-05 4:53 
GeneralRe: hex to decimal conversion Pin
Chris Losinger1-Jul-05 4:59
professionalChris Losinger1-Jul-05 4:59 
GeneralRe: hex to decimal conversion Pin
toxcct1-Jul-05 1:10
toxcct1-Jul-05 1:10 
GeneralRe: hex to decimal conversion Pin
llp00na1-Jul-05 1:39
llp00na1-Jul-05 1:39 
GeneralRe: hex to decimal conversion Pin
Alexander M.,1-Jul-05 2:03
Alexander M.,1-Jul-05 2:03 
GeneralRe: hex to decimal conversion Pin
llp00na1-Jul-05 2:13
llp00na1-Jul-05 2:13 
GeneralRe: hex to decimal conversion Pin
Cedric Moonen1-Jul-05 2:15
Cedric Moonen1-Jul-05 2:15 
GeneralRe: hex to decimal conversion Pin
Alexander M.,1-Jul-05 2:19
Alexander M.,1-Jul-05 2:19 
GeneralRe: hex to decimal conversion Pin
RChin1-Jul-05 3:47
RChin1-Jul-05 3:47 
GeneralRe: hex to decimal conversion Pin
GDavy1-Jul-05 2:20
GDavy1-Jul-05 2:20 
GeneralRe: hex to decimal conversion Pin
David Crow1-Jul-05 3:12
David Crow1-Jul-05 3:12 
GeneralRe: hex to decimal conversion Pin
llp00na1-Jul-05 5:22
llp00na1-Jul-05 5:22 
GeneralRe: hex to decimal conversion Pin
David Crow1-Jul-05 3:08
David Crow1-Jul-05 3:08 
GeneralRe: hex to decimal conversion Pin
Blake Miller1-Jul-05 7:25
Blake Miller1-Jul-05 7:25 
GeneralRe: hex to decimal conversion Pin
David Crow1-Jul-05 7:36
David Crow1-Jul-05 7:36 
GeneralRe: hex to decimal conversion Pin
llp00na4-Jul-05 5:05
llp00na4-Jul-05 5:05 

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.