Click here to Skip to main content
15,899,026 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: inside lib and dll Pin
David Crow8-Jun-06 11:11
David Crow8-Jun-06 11:11 
AnswerRe: inside lib and dll Pin
Michael Dunn8-Jun-06 11:26
sitebuilderMichael Dunn8-Jun-06 11:26 
GeneralRe: inside lib and dll Pin
David Crow9-Jun-06 2:47
David Crow9-Jun-06 2:47 
Questionconverting a "character" into hexadecimal Pin
rajeev828-Jun-06 3:30
rajeev828-Jun-06 3:30 
AnswerRe: converting a "character" into hexadecimal [modified] Pin
Cedric Moonen8-Jun-06 3:48
Cedric Moonen8-Jun-06 3:48 
QuestionRe: converting a "character" into hexadecimal Pin
David Crow8-Jun-06 3:52
David Crow8-Jun-06 3:52 
AnswerRe: converting a "character" into hexadecimal Pin
Zac Howland8-Jun-06 4:12
Zac Howland8-Jun-06 4:12 
AnswerRe: converting a "character" into hexadecimal Pin
basementman8-Jun-06 4:30
basementman8-Jun-06 4:30 
Perhaps this helps?

BYTE HexToByte(LPCSTR cpHex)
{
  BYTE cRetVal;

  if (*cpHex < 58)
    cRetVal = *cpHex - '0';
  else
    cRetVal = *cpHex - '7';

  cRetVal <<= 4;

  cpHex++;

  if (*cpHex < 58)
    cRetVal += *cpHex - '0';
  else
    cRetVal += *cpHex - '7';

  return cRetVal;
}



 onwards and upwards... 
QuestionDisable Maximise button Pin
Manjunath S8-Jun-06 3:22
Manjunath S8-Jun-06 3:22 
AnswerRe: Disable Maximise button Pin
Amar Sutar8-Jun-06 3:35
Amar Sutar8-Jun-06 3:35 
AnswerRe: Disable Maximise button [modified] Pin
Sarath C8-Jun-06 4:09
Sarath C8-Jun-06 4:09 
GeneralRe: Disable Maximise button [modified] Pin
Sarath C8-Jun-06 4:24
Sarath C8-Jun-06 4:24 
GeneralRe: Disable Maximise button [modified] Pin
Hamid_RT8-Jun-06 6:23
Hamid_RT8-Jun-06 6:23 
QuestionJpeg image with CMYK color model Pin
VCCCCCCCC8-Jun-06 3:01
VCCCCCCCC8-Jun-06 3:01 
AnswerRe: Jpeg image with CMYK color model Pin
Chris Losinger8-Jun-06 5:44
professionalChris Losinger8-Jun-06 5:44 
Questionany one have knowledge abt sipxtapi Pin
Amit Agarrwal8-Jun-06 2:52
Amit Agarrwal8-Jun-06 2:52 
QuestionRe: any one have knowledge abt sipxtapi Pin
David Crow8-Jun-06 2:55
David Crow8-Jun-06 2:55 
AnswerRe: any one have knowledge abt sipxtapi Pin
Amit Agarrwal8-Jun-06 3:01
Amit Agarrwal8-Jun-06 3:01 
QuestionRe: any one have knowledge abt sipxtapi Pin
David Crow8-Jun-06 3:22
David Crow8-Jun-06 3:22 
AnswerRe: any one have knowledge abt sipxtapi Pin
Amit Agarrwal8-Jun-06 4:06
Amit Agarrwal8-Jun-06 4:06 
AnswerRe: any one have knowledge abt sipxtapi Pin
Hamid_RT8-Jun-06 3:28
Hamid_RT8-Jun-06 3:28 
GeneralRe: any one have knowledge abt sipxtapi Pin
Amit Agarrwal8-Jun-06 4:08
Amit Agarrwal8-Jun-06 4:08 
QuestionLoading MFC controls from xml file Pin
raghuji.rao8-Jun-06 2:49
raghuji.rao8-Jun-06 2:49 
AnswerRe: Loading MFC controls from xml file Pin
Cedric Moonen8-Jun-06 3:01
Cedric Moonen8-Jun-06 3:01 
GeneralRe: Loading MFC controls from xml file Pin
raghuji.rao8-Jun-06 3:18
raghuji.rao8-Jun-06 3:18 

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.