Click to See Complete Forum and Search --> : BSTR


Wayne Forget
May 31st, 1999, 11:13 AM
How does one convert a BSTR to a CString ?

Wayne Fuller
May 31st, 1999, 11:40 AM
It should be as easy as
CString str;
str = bstr;


CString has an overload for wide characters.

Wayne