Click here to Skip to main content
15,891,951 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionForcing the creation of a FrameWnd inside a view or anyother CWnd type window.. Pin
Ahmed Charfeddine28-May-08 5:37
Ahmed Charfeddine28-May-08 5:37 
AnswerRe: Forcing the creation of a FrameWnd inside a view or anyother CWnd type window.. Pin
led mike28-May-08 6:14
led mike28-May-08 6:14 
GeneralRe: Forcing the creation of a FrameWnd inside a view or anyother CWnd type window.. Pin
Ahmed Charfeddine28-May-08 7:54
Ahmed Charfeddine28-May-08 7:54 
GeneralRe: Forcing the creation of a FrameWnd inside a view or anyother CWnd type window.. Pin
led mike28-May-08 8:54
led mike28-May-08 8:54 
AnswerRe: Forcing the creation of a FrameWnd inside a view or anyother CWnd type window.. Pin
SandipG 28-May-08 19:57
SandipG 28-May-08 19:57 
GeneralRe: Forcing the creation of a FrameWnd inside a view or anyother CWnd type window.. Pin
Ahmed Charfeddine28-May-08 23:46
Ahmed Charfeddine28-May-08 23:46 
QuestionHow to get running OPC servers in the network? Pin
Member 475076128-May-08 4:29
Member 475076128-May-08 4:29 
AnswerRe: How to get running OPC servers in the network? Pin
Rajesh R Subramanian28-May-08 4:40
professionalRajesh R Subramanian28-May-08 4:40 
AnswerRe: How to get running OPC servers in the network? Pin
Randor 28-May-08 5:54
professional Randor 28-May-08 5:54 
QuestionHow to resolve this err. Pin
KASR128-May-08 2:08
KASR128-May-08 2:08 
AnswerRe: How to resolve this err. Pin
Cedric Moonen28-May-08 2:25
Cedric Moonen28-May-08 2:25 
AnswerRe: How to resolve this err. Pin
CPallini28-May-08 2:26
mveCPallini28-May-08 2:26 
AnswerRe: How to resolve this err. Pin
SandipG 28-May-08 2:41
SandipG 28-May-08 2:41 
QuestionAbout Strtok Pin
savitri28-May-08 1:32
savitri28-May-08 1:32 
AnswerRe: About Strtok Pin
Nibu babu thomas28-May-08 1:52
Nibu babu thomas28-May-08 1:52 
Don't use strtok since internally it uses a static buffer which will cause problem with calls from multiple threads or simultaneous calls on different strings.

Instead use strtok_s/_tcstok_s, a demo -> http://www.tenouk.com/cpluscodesnippet/viewtopic.php?p=474[^]

Use vector<string> to store strings that are tokenized by this function.


Nibu thomas
Microsoft MVP for VC++


Code must be written to be read, not by the compiler, but by another human being.

Programming Blog: http://nibuthomas.wordpress.com

GeneralRe: About Strtok Pin
Graham Bradshaw28-May-08 13:06
Graham Bradshaw28-May-08 13:06 
GeneralRe: About Strtok Pin
Nibu babu thomas28-May-08 17:01
Nibu babu thomas28-May-08 17:01 
AnswerRe: About Strtok Pin
bob1697228-May-08 2:07
bob1697228-May-08 2:07 
AnswerRe: About Strtok Pin
Jijo.Raj28-May-08 8:55
Jijo.Raj28-May-08 8:55 
QuestionLittle conversion problem Pin
Ritxi28-May-08 1:18
Ritxi28-May-08 1:18 
QuestionRe: Little conversion problem Pin
Nelek28-May-08 1:26
protectorNelek28-May-08 1:26 
AnswerRe: Little conversion problem Pin
Ritxi28-May-08 1:33
Ritxi28-May-08 1:33 
GeneralRe: Little conversion problem Pin
Nibu babu thomas28-May-08 1:34
Nibu babu thomas28-May-08 1:34 
GeneralRe: Little conversion problem Pin
Ritxi28-May-08 3:02
Ritxi28-May-08 3:02 
AnswerRe: Little conversion problem Pin
Cedric Moonen28-May-08 1:36
Cedric Moonen28-May-08 1:36 

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.