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

2024-11-22 08:58:52
推荐回答(2个)
回答1:

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

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

互转

回答2:

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