Return between CStrings
-
hello @all, i have a mfc-program and two CStrings. i would like to connect these, but everyone in its own line, e.g. they should be separated with a Return. CString one="123"; CString two="456"; CString combination="123 456"; how can i get the CString 'combination'???? :confused: thanks sunny :-D
-
hello @all, i have a mfc-program and two CStrings. i would like to connect these, but everyone in its own line, e.g. they should be separated with a Return. CString one="123"; CString two="456"; CString combination="123 456"; how can i get the CString 'combination'???? :confused: thanks sunny :-D
-
hello @all, i have a mfc-program and two CStrings. i would like to connect these, but everyone in its own line, e.g. they should be separated with a Return. CString one="123"; CString two="456"; CString combination="123 456"; how can i get the CString 'combination'???? :confused: thanks sunny :-D
hello,u can do it as following::-D combination=one+two;
-
hello @all, i have a mfc-program and two CStrings. i would like to connect these, but everyone in its own line, e.g. they should be separated with a Return. CString one="123"; CString two="456"; CString combination="123 456"; how can i get the CString 'combination'???? :confused: thanks sunny :-D
Hello, u can do it as this: combination=one+0X0A+0X0D+two; good luck!:-O