关于连接两个CComBSTR类型值问题
<font face="宋体" size="2">我定义了个CComBSTR类型值<br/>CComBSTR bstring;<br/>另外还有一个字符串"Name ="<br/>我想把这两个字符串连接起来,要用到strcat,但是不知道怎么回事.老是出错,谁能帮我看看</font> <p>不要使用CComBSTR.使用_bstr_t.</p><p>然后直接+</p> <p>或者直接使用CComBSTR的方法:Append.</p><p>如CComBSTR a,b;</p><p>a.Append(b);</p>
页:
[1]