Click here to Skip to main content
15,887,267 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionEdit box Pin
SandhyaSri17-Jul-06 0:08
SandhyaSri17-Jul-06 0:08 
AnswerRe: Edit box Pin
Parthi_Appu17-Jul-06 0:23
Parthi_Appu17-Jul-06 0:23 
AnswerRe: Edit box Pin
_AnsHUMAN_ 17-Jul-06 0:27
_AnsHUMAN_ 17-Jul-06 0:27 
GeneralRe: Edit box Pin
Parthi_Appu17-Jul-06 0:36
Parthi_Appu17-Jul-06 0:36 
GeneralRe: Edit box Pin
Smith#17-Jul-06 1:30
Smith#17-Jul-06 1:30 
QuestionCString to char Pin
vc++_fragrance16-Jul-06 23:41
vc++_fragrance16-Jul-06 23:41 
AnswerRe: CString to char Pin
Rajesh R Subramanian16-Jul-06 23:47
professionalRajesh R Subramanian16-Jul-06 23:47 
AnswerRe: CString to char [modified] Pin
Parthi_Appu16-Jul-06 23:49
Parthi_Appu16-Jul-06 23:49 
if your application is not based on _UNICODE text then you can use CString.GetBuffer(). this will return the starting address of the string.
other wise store this CString value in stl string, and covert as mentioned

#include string //use angular brackets
using namespace std;

CString str;
string strTemp((LPCTSTR)str);
char szValue[..] = {0};
strcpy(szValue, strTemp.c_str());

Do your Duty and Don't expect the Result

-- modified at 5:55 Monday 17th July, 2006
GeneralRe: CString to char Pin
David Crow17-Jul-06 2:49
David Crow17-Jul-06 2:49 
AnswerRe: CString to char [modified] Pin
Abhi Lahare16-Jul-06 23:50
Abhi Lahare16-Jul-06 23:50 
GeneralRe: CString to char Pin
Parthi_Appu16-Jul-06 23:55
Parthi_Appu16-Jul-06 23:55 
AnswerRe: CString to char Pin
ThatsAlok17-Jul-06 0:37
ThatsAlok17-Jul-06 0:37 
AnswerRe: CString to char Pin
Hamid_RT17-Jul-06 1:15
Hamid_RT17-Jul-06 1:15 
GeneralRe: CString to char Pin
Parthi_Appu17-Jul-06 1:43
Parthi_Appu17-Jul-06 1:43 
GeneralRe: CString to char Pin
David Crow17-Jul-06 2:48
David Crow17-Jul-06 2:48 
GeneralRe: CString to char Pin
Parthi_Appu17-Jul-06 3:42
Parthi_Appu17-Jul-06 3:42 
GeneralRe: CString to char Pin
David Crow17-Jul-06 4:00
David Crow17-Jul-06 4:00 
GeneralRe: CString to char Pin
Parthi_Appu17-Jul-06 16:43
Parthi_Appu17-Jul-06 16:43 
GeneralRe: CString to char Pin
David Crow18-Jul-06 2:42
David Crow18-Jul-06 2:42 
GeneralRe: CString to char Pin
Parthi_Appu18-Jul-06 3:14
Parthi_Appu18-Jul-06 3:14 
GeneralRe: CString to char Pin
David Crow18-Jul-06 3:38
David Crow18-Jul-06 3:38 
GeneralRe: CString to char Pin
Parthi_Appu25-Jul-06 1:57
Parthi_Appu25-Jul-06 1:57 
QuestionUnzip.exe Pin
see me16-Jul-06 23:36
see me16-Jul-06 23:36 
AnswerRe: Unzip.exe Pin
see me17-Jul-06 1:58
see me17-Jul-06 1:58 
AnswerRe: Unzip.exe Pin
David Crow17-Jul-06 2:50
David Crow17-Jul-06 2:50 

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.