Click here to Skip to main content
16,005,162 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Flash Files? Pin
jan larsen5-Oct-04 3:34
jan larsen5-Oct-04 3:34 
QuestionListview Ctrl, How to change item height with custom draw? Pin
enoloo_don4-Oct-04 23:32
enoloo_don4-Oct-04 23:32 
QuestionHow to use flash files? Pin
Zero_One_ADO4-Oct-04 23:27
Zero_One_ADO4-Oct-04 23:27 
AnswerRe: How to use flash files? Pin
toxcct4-Oct-04 23:35
toxcct4-Oct-04 23:35 
GeneralSerial Comm Pin
mmsesar4-Oct-04 23:09
mmsesar4-Oct-04 23:09 
Generalbuilding dll project with embedded VC++ Pin
ting6684-Oct-04 22:58
ting6684-Oct-04 22:58 
QuestionHow to tokenize the string Pin
Rassul Yunussov4-Oct-04 22:29
Rassul Yunussov4-Oct-04 22:29 
AnswerRe: How to tokenize the string Pin
toxcct4-Oct-04 23:03
toxcct4-Oct-04 23:03 
you have to get the # character from the string, and test its following character.
i'm about to post an article about something like that (parsing streams)... wait a bit Wink | ;) (posted)
here is a like on parsing code : Visual Calc - A new dimension for the desktop calculator[^]
<font style="color:blue;">char</font> ch = str[NextChar++];   <font style="color:green;">// Be careful to test if the index is not out of bounds...</font>
<font style="color:blue;">switch</font> (ch) {
  <font style="color:blue;">case</font> <font style="color:purple;">'#'</font>:
    {
        <font style="color:blue;">char</font> nch = str[NextChar++];
        <font style="color:blue;">if</font> (nch == <font style="color:purple;">'#'</font>) {
            <font style="color:green;">// Do some action when ## is found on the stream...</font>
        }
        <font style="color:blue;">else</font> {
            <font style="color:green;">// Only one # was found...</font>
            NextChar--;
        }
        <font style="color:blue;">break</font>;
    }
  <font style="color:blue;">default</font>:
    <font style="color:green;">// Fisrt character is not #...</font>
}



TOXCCT >>> GEII power


AnswerRe: How to tokenize the string Pin
Abebe5-Oct-04 1:43
Abebe5-Oct-04 1:43 
AnswerRe: How to tokenize the string Pin
BlackDice5-Oct-04 2:52
BlackDice5-Oct-04 2:52 
AnswerRe: How to tokenize the string Pin
David Crow5-Oct-04 5:08
David Crow5-Oct-04 5:08 
GeneralConvert to Unicode Pin
parths4-Oct-04 21:48
parths4-Oct-04 21:48 
GeneralRe: Convert to Unicode Pin
Robert A. T. Káldy5-Oct-04 0:27
Robert A. T. Káldy5-Oct-04 0:27 
GeneralRe: Convert to Unicode Pin
parths5-Oct-04 0:54
parths5-Oct-04 0:54 
GeneralRe: Convert to Unicode Pin
Robert A. T. Káldy5-Oct-04 6:09
Robert A. T. Káldy5-Oct-04 6:09 
GeneralRe: Convert to Unicode Pin
parths5-Oct-04 23:32
parths5-Oct-04 23:32 
GeneralRe: Convert to Unicode Pin
Robert A. T. Káldy8-Oct-04 4:29
Robert A. T. Káldy8-Oct-04 4:29 
GeneralThreading Question Pin
raed4-Oct-04 21:41
raed4-Oct-04 21:41 
GeneralRe: Threading Question Pin
Sujan Christo4-Oct-04 22:00
Sujan Christo4-Oct-04 22:00 
GeneralRe: Threading Question Pin
Niklas L4-Oct-04 22:05
Niklas L4-Oct-04 22:05 
GeneralRe: Threading Question Pin
Bob Stanneveld4-Oct-04 22:25
Bob Stanneveld4-Oct-04 22:25 
GeneralRe: Threading Question Pin
digwizfox5-Oct-04 6:35
digwizfox5-Oct-04 6:35 
GeneralRe: Threading Question Pin
Bob Stanneveld5-Oct-04 8:15
Bob Stanneveld5-Oct-04 8:15 
GeneralCheck box in Grid Pin
Cedric Moonen4-Oct-04 20:24
Cedric Moonen4-Oct-04 20:24 
Questionhow to include classes written by other in my project? Pin
tip23104-Oct-04 19:45
tip23104-Oct-04 19:45 

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.