Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi All, How do i convert LPARAM to CComBstr?
Sunil
Use itoa() to convert long/int to char* and append this to CcomBSTR as in the given sample code: LPARAM temp = 90; CComBSTR t; char* buf= new char[5]; buf = itoa(temp,buf,10); t.Append(buf); Cheers!! Bhawna
Solution[^]
Yes U Can ...If U Can ,Dream it , U can do it ...ICAN