Tagged Questions
1
vote
1answer
153 views
for_each on a COM IEnumXxx interface?
I've got a COM object that returns an IEnumUnknown. Is there anything out there that'll turn it into an STL-style iterator? So that I can do something like this:
IEnumUnkPtr pEnumUnk;
// ...something ...
0
votes
1answer
76 views
VB6 not recognizing ADODB enumerators via COM
I am supporting a legacy ASP page which creates an ADODB stream object like this, then attempts to set it's type with an ADODB enumerator.
Set BinaryStream = Server.CreateObject("ADODB.Stream")
...