3
votes
5answers
610 views
Is there a faster way of getting a char* from a _variant_t than (const char*)(_bstr_t)
Here's the code I want to speed up. It's getting a value from an ADO recordset and converting it to a char*. But this is slow. Can I skip the creation of the _bstr_t?
…
1
vote
2answers
44 views
Why use CComBSTR instead of just passing a WCHAR*?
I'm new to COM. What exactly is the advantage of replacing:
L"String"
with
CComBSTR(L"String")
I can see a changelist in the COM part of my .NET application where all strings …
2
votes
2answers
38 views
Memory leak for CComBSTR
I have read that the following code causes memory leak. But did not understand why.
CComBSTR str;
pFoo->get_Bar(&str);
pFoo->get_Baf(&str);
How does it cause a lea …
1
vote
4answers
40 views
ComBSTR assignment
I'm confused about COM string assignments. Which of the following string assignment is correct. Why?
CComBSTR str;
.
.
Obj->str = L"" //Option1
OR should it be
Obj-> …
0
votes
3answers
91 views
How to convert _bstr_t to CString
I have a _bstr_t variable bstrErr and I am having a CString variable csError. How do I set the value which come in bstrErr to csError?
0
votes
2answers
186 views
VBScript “Type Mismatch” issue with “[in, out] BSTR * “ parameter
Hi,
I'm working with third-party COM object that has some of its methods passing values back as BSTR pointer. Since VBscript supports only Variant type attempts to use in a way li …
2
votes
2answers
137 views
MS VC++ Convert a byte array to a BSTR?
Hi,
I have a string that starts out in a .Net application, is encrypted and stored in AD. It's then picked up by a native C++ app and decrypted to produce an array of bytes
e.g "AB …
0
votes
2answers
88 views
ICertRequest2::Submit CSR data Compatability ASCII to BSTR
Hello Experts,
I have my certrequest as a PEM base64 data. See data below.
1) My understanding is that this is an ASCII data type and not in
UNICODE format. Please clarify.
----- …
2
votes
5answers
1k views
How do you efficiently copy BSTR to wchar_t[] ?
I have a BSTR object that I would like to convert to copy to a wchar__t object. The tricky thing is the length of the BSTR object could be anywhere from a few kilobytes to a few hu …
1
vote
2answers
112 views
Convert LPCOLESTR to BSTR?
Any ideas on how to make a BSTR out of an LPCOLESTR? Silly thing to get hung up on..
1
vote
2answers
171 views
Where is using null BSTR documented?
It's at least common practice to treat null BSTR (null WCHAR* pointer) as an empty string and design all the code manipulating BSTRs accordingly. Answers to this question say the s …
4
votes
2answers
129 views
Who owns returned BSTR?
Suppose a method from a COM interface returns BSTR value. Am I right in my opinion that I must free it?
The code example at http://msdn.microsoft.com/en-us/library/aa365382(VS.85) …
1
vote
2answers
483 views
_bstr_t to UTF-8 possible?
I have a _bstr_t string which contains Japanese text. I want to convert this string to a UTF-8 string which is defined as a char *.
Can I convert the _bstr_t string to char * (UT …
2
votes
5answers
497 views
send a COM object with a BSTR value type in a MSMQ message
I'm trying to send a COM object over a MSMQ message in C++. This is my object :
class ATL_NO_VTABLE CAnalisis :
public CComObjectRootEx,
public CComCoClass,
public IS …
1
vote
3answers
1k views
How to convert char * to BSTR?
Hi,
How can I pass a char * from C dll to VB
Here is sample code:
void Cfunc(char *buffer,int len)
{
BSTR buf_bstr = SysAllocString((BSTR)buffer);
VBptr.VBfunc(buf_bstr,len …
