Click here to Skip to main content
15,890,282 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: view the picture in other path by picture viewer Pin
sdhtyjnniutnbjnhbghb27-Aug-06 19:35
sdhtyjnniutnbjnhbghb27-Aug-06 19:35 
GeneralRe: view the picture in other path by picture viewer Pin
Hamid_RT27-Aug-06 21:14
Hamid_RT27-Aug-06 21:14 
GeneralRe: view the picture in other path by picture viewer Pin
sdhtyjnniutnbjnhbghb27-Aug-06 21:40
sdhtyjnniutnbjnhbghb27-Aug-06 21:40 
QuestionRe: view the picture in other path by picture viewer Pin
David Crow28-Aug-06 4:07
David Crow28-Aug-06 4:07 
AnswerRe: view the picture in other path by picture viewer Pin
sdhtyjnniutnbjnhbghb28-Aug-06 15:38
sdhtyjnniutnbjnhbghb28-Aug-06 15:38 
GeneralRe: view the picture in other path by picture viewer Pin
David Crow29-Aug-06 2:45
David Crow29-Aug-06 2:45 
QuestionNeed to end a string with null instead of \r\n Pin
samkook27-Aug-06 11:26
samkook27-Aug-06 11:26 
AnswerRe: Need to end a string with null instead of \r\n [modified] Pin
Waldermort27-Aug-06 11:41
Waldermort27-Aug-06 11:41 
"This is a null terminated string\0"

You can use the strtok() functions to find \r\n, though it would help if we knew how you are creating the string
char *str = new char [10];
strcpy(str,"hello\r\n");
int x = strlen(str);
str[x-2] = '\0';
x = strlen(str);
delete[] str;

Works for me.


-- modified at 17:46 Sunday 27th August, 2006
GeneralRe: Need to end a string with null instead of \r\n [modified] Pin
samkook27-Aug-06 11:52
samkook27-Aug-06 11:52 
GeneralRe: Need to end a string with null instead of \r\n Pin
Waldermort27-Aug-06 12:00
Waldermort27-Aug-06 12:00 
GeneralRe: Need to end a string with null instead of \r\n Pin
samkook27-Aug-06 12:19
samkook27-Aug-06 12:19 
GeneralRe: Need to end a string with null instead of \r\n Pin
fefe.wyx27-Aug-06 14:42
fefe.wyx27-Aug-06 14:42 
GeneralRe: Need to end a string with null instead of \r\n Pin
David Crow28-Aug-06 4:11
David Crow28-Aug-06 4:11 
GeneralRe: Need to end a string with null instead of \r\n Pin
David Crow28-Aug-06 4:14
David Crow28-Aug-06 4:14 
AnswerRe: Need to end a string with null instead of \r\n Pin
kakan27-Aug-06 22:51
professionalkakan27-Aug-06 22:51 
GeneralRe: Need to end a string with null instead of \r\n Pin
samkook28-Aug-06 7:02
samkook28-Aug-06 7:02 
GeneralRe: Need to end a string with null instead of \r\n Pin
kakan28-Aug-06 19:31
professionalkakan28-Aug-06 19:31 
QuestionScreen Sizes Pin
BlitzPackage27-Aug-06 9:58
BlitzPackage27-Aug-06 9:58 
AnswerRe: Screen Sizes Pin
Waldermort27-Aug-06 10:58
Waldermort27-Aug-06 10:58 
GeneralRe: Screen Sizes Pin
BlitzPackage27-Aug-06 15:35
BlitzPackage27-Aug-06 15:35 
AnswerRe: Screen Sizes Pin
Hamid_RT27-Aug-06 21:08
Hamid_RT27-Aug-06 21:08 
GeneralRe: Screen Sizes Pin
BlitzPackage28-Aug-06 2:49
BlitzPackage28-Aug-06 2:49 
GeneralRe: Screen Sizes Pin
Hamid_RT28-Aug-06 4:20
Hamid_RT28-Aug-06 4:20 
Questionwclen returning wrong value Pin
Waldermort27-Aug-06 8:37
Waldermort27-Aug-06 8:37 
AnswerRe: wclen returning wrong value Pin
Nibu babu thomas27-Aug-06 17:25
Nibu babu thomas27-Aug-06 17: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.