Click here to Skip to main content
15,900,589 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Socket programming Pin
Cedric Moonen2-Nov-08 21:22
Cedric Moonen2-Nov-08 21:22 
GeneralRe: Socket programming Pin
Chandrasekharan P2-Nov-08 21:57
Chandrasekharan P2-Nov-08 21:57 
GeneralRe: Socket programming Pin
Cedric Moonen2-Nov-08 22:08
Cedric Moonen2-Nov-08 22:08 
GeneralRe: Socket programming Pin
Chandrasekharan P2-Nov-08 22:13
Chandrasekharan P2-Nov-08 22:13 
GeneralRe: Socket programming Pin
SandipG 2-Nov-08 22:13
SandipG 2-Nov-08 22:13 
GeneralRe: Socket programming Pin
Chandrasekharan P2-Nov-08 22:17
Chandrasekharan P2-Nov-08 22:17 
Question[SOLVED] Modifying stringstream Pin
CodingLover2-Nov-08 18:39
CodingLover2-Nov-08 18:39 
AnswerRe: Modifying stringstream Pin
Jijo.Raj2-Nov-08 19:01
Jijo.Raj2-Nov-08 19:01 
Extract the required part by substr() and update streambuffer. Have a look at code snippet.

stringstream str("y:<statistic>");
int offset = str.str().find('<', 0);

// Remove all chars infront of <, and update stringstream buffer.
str.str( str.str().substr( offset ));
</statistic>


Regards,
Jijo.

_____________________________________________________

http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

QuestionRe: Modifying stringstream Pin
CodingLover2-Nov-08 19:22
CodingLover2-Nov-08 19:22 
AnswerRe: Modifying stringstream Pin
Jijo.Raj2-Nov-08 19:39
Jijo.Raj2-Nov-08 19:39 
NewsRe: Modifying stringstream Pin
CodingLover2-Nov-08 19:53
CodingLover2-Nov-08 19:53 
GeneralRe: Modifying stringstream Pin
Jijo.Raj2-Nov-08 20:03
Jijo.Raj2-Nov-08 20:03 
QuestionCreate New String Value in registry Pin
cpvc++2-Nov-08 18:23
cpvc++2-Nov-08 18:23 
AnswerRe: Create New String Value in registry Pin
Hamid_RT2-Nov-08 18:30
Hamid_RT2-Nov-08 18:30 
AnswerRe: Create New String Value in registry Pin
Jijo.Raj2-Nov-08 18:43
Jijo.Raj2-Nov-08 18:43 
Questionstandard deviation [modified] Pin
jonig192-Nov-08 18:20
jonig192-Nov-08 18:20 
AnswerRe: standard deviation Pin
enhzflep2-Nov-08 19:09
enhzflep2-Nov-08 19:09 
GeneralRe: standard deviation Pin
jonig193-Nov-08 3:35
jonig193-Nov-08 3:35 
QuestionShow Bitmap image in CRichEdit Control Pin
Dhiraj kumar Saini2-Nov-08 18:05
Dhiraj kumar Saini2-Nov-08 18:05 
AnswerRe: Show Bitmap image in CRichEdit Control Pin
Hamid_RT2-Nov-08 18:19
Hamid_RT2-Nov-08 18:19 
AnswerRe: Show Bitmap image in CRichEdit Control Pin
enhzflep2-Nov-08 18:21
enhzflep2-Nov-08 18:21 
QuestioncapDriverConnect(hwnd_frame,0) Pin
anilaabc2-Nov-08 17:45
anilaabc2-Nov-08 17:45 
AnswerRe: capDriverConnect(hwnd_frame,0) Pin
Mark Salsbery3-Nov-08 5:42
Mark Salsbery3-Nov-08 5:42 
QuestionHelp for a dummy ! - How do add a Custom Control to my VC++6.0 MFC project. Pin
Neil Urquhart2-Nov-08 5:19
Neil Urquhart2-Nov-08 5:19 
AnswerRe: Help for a dummy ! - How do add a Custom Control to my VC++6.0 MFC project. Pin
Michael Dunn2-Nov-08 8:01
sitebuilderMichael Dunn2-Nov-08 8:01 

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.