Click here to Skip to main content
15,919,613 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Serial communication witch 9.bit Pin
Ryan Binns10-Sep-03 3:08
Ryan Binns10-Sep-03 3:08 
GeneralCRLF vs. LF Pin
peterchen9-Sep-03 20:55
peterchen9-Sep-03 20:55 
GeneralRe: CRLF vs. LF Pin
geo_m9-Sep-03 21:56
geo_m9-Sep-03 21:56 
GeneralRe: CRLF vs. LF Pin
Johnny ²9-Sep-03 22:00
Johnny ²9-Sep-03 22:00 
GeneralRe: CRLF vs. LF Pin
Ryan Binns10-Sep-03 0:35
Ryan Binns10-Sep-03 0:35 
GeneralDetect the icon selected on desktop Pin
Tipu9-Sep-03 20:49
Tipu9-Sep-03 20:49 
Generalbase-change in c++ without using streams Pin
elchip9-Sep-03 18:59
elchip9-Sep-03 18:59 
GeneralRe: base-change in c++ without using streams Pin
PJ Arends9-Sep-03 20:11
professionalPJ Arends9-Sep-03 20:11 
strtoul() is your friend here.


// Untested code without error checking
CString Convert(CString input)
{
    CString output;
    char *dummy = NULL;
    int pos = 0;
    int len = input.GetLength();
    while (pos < len)
    {
        Output += (char)strtoul(input.Mid(pos, 2), &dummy, 16);
        pos += 2;
    }
    return output;
}








Sonork 100.11743 Chicken Little

"You're obviously a superstar." - Christian Graus about me - 12 Feb '03

Within you lies the power for good - Use it!
GeneralRe: base-change in c++ without using streams Pin
elchip9-Sep-03 20:18
elchip9-Sep-03 20:18 
GeneralDLL to static lib converter Pin
Ravi Bhavnani9-Sep-03 18:10
professionalRavi Bhavnani9-Sep-03 18:10 
GeneralRe: DLL to static lib converter Pin
Neville Franks9-Sep-03 23:51
Neville Franks9-Sep-03 23:51 
QuestionHow to detect when a file is created Pin
pankajdaga9-Sep-03 17:49
pankajdaga9-Sep-03 17:49 
AnswerRe: How to detect when a file is created Pin
Pankaj_lazy_to_log_on9-Sep-03 18:22
sussPankaj_lazy_to_log_on9-Sep-03 18:22 
GeneralRe: How to detect when a file is created Pin
Chris Richardson9-Sep-03 18:49
Chris Richardson9-Sep-03 18:49 
Generalnew to c++ need help about compiling Pin
colin219-Sep-03 16:09
colin219-Sep-03 16:09 
GeneralRe: new to c++ need help about compiling Pin
berndg9-Sep-03 20:25
berndg9-Sep-03 20:25 
GeneralRe: new to c++ need help about compiling Pin
DougW4810-Sep-03 2:00
DougW4810-Sep-03 2:00 
GeneralRe: Char * w/ escaped character to char Pin
Abin9-Sep-03 13:55
Abin9-Sep-03 13:55 
GeneralDirectX video capture without audio Pin
cje9-Sep-03 12:12
cje9-Sep-03 12:12 
GeneralRe: DirectX video capture without audio Pin
Andrew Walker9-Sep-03 12:21
Andrew Walker9-Sep-03 12:21 
GeneralRe: DirectX video capture without audio Pin
cje9-Sep-03 12:47
cje9-Sep-03 12:47 
GeneralOverriding CMDIChildWnd::OnCreateClient Pin
Ori K9-Sep-03 11:49
Ori K9-Sep-03 11:49 
Generalvalues for MFC function in VC++ Pin
extraeye9-Sep-03 11:45
extraeye9-Sep-03 11:45 
QuestionWhat function am I? Pin
krauskim9-Sep-03 11:19
krauskim9-Sep-03 11:19 
AnswerRe: What function am I? Pin
Alvaro Mendez9-Sep-03 11:38
Alvaro Mendez9-Sep-03 11:38 

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.