CComSafeArray<VARIANT> fields;
hr = _tab_file->get_Fields(fields.GetSafeArrayPtr());
for ( LONG i = fields.GetLowerBound(), ie = fields.GetUpperBound(); i <= ie; ++i)
{
CComVariant fld = fields.GetAt(i); // (1) raises DISP_E_BADVARTYPE (0x80020008L)
// Next code works fine
CComQIPtr<ITabField> field = fields.GetAt(i).punkVal; // (2) Ok
_bstr_t fieldName;
hr = field->get_Name(fieldName.GetAddress());
::OutputDebugString(fieldName + _T("\n")); // Ok
}
Line (1): fields.GetAt(i) returns CComVariant. When I try to assign this value to CComVariant fld called copy constructor and method CComVariant::Copy inside the copy constructor. It raise an exception ("bad variable type", DISP_E_BADVARTYPE (0x80020008L)).
At the same time the line (2) works well. What's wrong with line (1), and how to fix it.
EDIT: This is code for get_Field (filling SAFEARRAY).
STDMETHODIMP TabFile::get_Fields( SAFEARRAY** fields )
{
if(mapInfoFile_ == 0)
return E_UNEXPECTED;
int fieldCount = getFieldCount();
SAFEARRAY* arr = ::SafeArrayCreateVector(VT_UNKNOWN, 0, fieldCount);
for(LONG i = 0; i < fieldCount; i++)
{
QField* field = getQField(i);
ITabField* tabField = TabField::CreateInstance();
tabField->put_Name(_bstr_t(field->GetNameRef()));
tabField->put_Type(field->GetNativeFieldType(i));
::SafeArrayPutElement(arr, &i, tabField);
tabField->Release();
}
*fields = arr;
return S_OK;
}
GetAt(i)will get youCComVariant&type. So you can update yourfldvariable to be a reference type and check what you have there and why exactly the thing does not go through assignment/duplication. – Roman R. Nov 3 '11 at 9:03CComVariant &fld = fields.GetAt(i);. Works fine, but I don't know how to understand now, what is the problem with the copy constructor – Loom Nov 3 '11 at 9:24fldvariable and you can inspect it. Check if its.vtis good and is not junk. After all, this value is not valid for copy, so there should be something wrong with it and you should be able to see it with debugger. – Roman R. Nov 3 '11 at 9:37.vtis exactly the problem. Your variant is.vt+.punkVal..punkValseems to be valid, but.vthas to be something likeVT_UNKNOWNorVT_DISPATCHin order for API to realize you have an interface there. You seems to have junk so API fails. This is the reason and you eventually hit the cause. – Roman R. Nov 3 '11 at 12:00IUnknowns and then you are trying to interpret is as array ofVARIANT. Those should be the same types, you want either array of unknowns and you pack interface into CComVariant before putting it into array in the getter, or otherwise caller will deal with array of interfaces. – Roman R. Nov 3 '11 at 12:47