VC++6.0如何从文本框中获取string型变量还有如何将string型变量于另一文本框中显示出来呢?

2024年11月22日 08:58
有2个网友回答
网友(1):

string str ="abc";
CString cstr = str.c_str();

string temp;
temp = cstr.GetBuffer(cstr.GetLength());

互转

网友(2):

string与cstring直接用vc就能自动转换吧?