Click here to Skip to main content
15,908,775 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Linking to MFC in a non-MFC dll Pin
Mark Salsbery4-Oct-07 7:54
Mark Salsbery4-Oct-07 7:54 
GeneralRe: Linking to MFC in a non-MFC dll Pin
Mark Salsbery4-Oct-07 6:48
Mark Salsbery4-Oct-07 6:48 
QuestionJump from one Dialog to other in a Dialog MFC application Pin
TomWizard3-Oct-07 7:59
TomWizard3-Oct-07 7:59 
AnswerRe: Jump from one Dialog to other in a Dialog MFC application Pin
Maximilien3-Oct-07 9:13
Maximilien3-Oct-07 9:13 
Questiontokenizer help Pin
dellthinker3-Oct-07 7:14
dellthinker3-Oct-07 7:14 
AnswerRe: tokenizer help Pin
Nemanja Trifunovic3-Oct-07 7:44
Nemanja Trifunovic3-Oct-07 7:44 
GeneralRe: tokenizer help Pin
dellthinker3-Oct-07 9:37
dellthinker3-Oct-07 9:37 
AnswerRe: tokenizer help Pin
Stephen Hewitt3-Oct-07 14:23
Stephen Hewitt3-Oct-07 14:23 
Why not simply use something like this:
---------------------------------------

// Console.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
#include <string>
#include <sstream>
using namespace std;

void main()
{
string message = ":user.client computer1 sysinfo :sync1 smtp.startup";

istringstream iss(message);
string pt1, pt2, pt3, pt4, pt5;
iss >> pt1 >> pt2 >> pt3 >> pt4 >> pt5;

cout << "pt1 = " << pt1 << endl;
cout << "pt2 = " << pt2 << endl;
cout << "pt3 = " << pt3 << endl;
cout << "pt4 = " << pt4 << endl;
cout << "pt5 = " << pt5 << endl;
}


Steve
AnswerRe: tokenizer help Pin
DQNOK4-Oct-07 4:30
professionalDQNOK4-Oct-07 4:30 
GeneralRe: tokenizer help Pin
dellthinker4-Oct-07 8:27
dellthinker4-Oct-07 8:27 
QuestionSidebar like Vista sidebar for all os Windows 2000, XP , 2003 Pin
Sudhir Mangla3-Oct-07 5:18
professionalSudhir Mangla3-Oct-07 5:18 
QuestionCorba - Trail Version/Freeware for VS 2005 C++ Pin
Andy2023-Oct-07 3:23
Andy2023-Oct-07 3:23 
QuestionWhere my object are stored Pin
manustone3-Oct-07 3:10
manustone3-Oct-07 3:10 
AnswerRe: Where my object are stored Pin
Iain Clarke, Warrior Programmer3-Oct-07 4:37
Iain Clarke, Warrior Programmer3-Oct-07 4:37 
GeneralRe: Where my object are stored Pin
manustone3-Oct-07 6:43
manustone3-Oct-07 6:43 
AnswerRe: Where my object are stored Pin
jhwurmbach3-Oct-07 22:51
jhwurmbach3-Oct-07 22:51 
QuestionDS_CONTROL vs WS_EX_CONTROLPARENT Pin
Nishad S3-Oct-07 2:57
Nishad S3-Oct-07 2:57 
AnswerRe: DS_CONTROL vs WS_EX_CONTROLPARENT Pin
Iain Clarke, Warrior Programmer3-Oct-07 4:42
Iain Clarke, Warrior Programmer3-Oct-07 4:42 
GeneralRe: DS_CONTROL vs WS_EX_CONTROLPARENT Pin
Nishad S3-Oct-07 18:38
Nishad S3-Oct-07 18:38 
GeneralRe: DS_CONTROL vs WS_EX_CONTROLPARENT Pin
Iain Clarke, Warrior Programmer4-Oct-07 6:17
Iain Clarke, Warrior Programmer4-Oct-07 6:17 
GeneralRe: DS_CONTROL vs WS_EX_CONTROLPARENT Pin
Nishad S4-Oct-07 18:35
Nishad S4-Oct-07 18:35 
QuestionOwnerdraw Listbox Pin
Hamed Musavi3-Oct-07 0:49
Hamed Musavi3-Oct-07 0:49 
AnswerRe: Ownerdraw Listbox Pin
Nishad S3-Oct-07 1:10
Nishad S3-Oct-07 1:10 
GeneralRe: Ownerdraw Listbox Pin
Hamed Musavi3-Oct-07 1:16
Hamed Musavi3-Oct-07 1:16 
GeneralRe: Ownerdraw Listbox Pin
Nishad S3-Oct-07 1:25
Nishad S3-Oct-07 1:25 

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.