Error in rule Rule0, in document part1 ipt

Asked By 20 points N/A Posted on -
qa-featured

Hi there,

I found this error report and is saying that member not found. I don’t know what this error means because I didn’t observed to affect anything but I would like to solve it. Can anyone help me please to fix this ? What it could affect ?

Thank you !

Error in rule: Rule0, in document: part1.ipt

Error in rule: Rule0, in document: part1.ipt

Member not found. (Exception from HRESULT: 0x80020003 (DISP_E_MEMBERNOTFOUND))

OK

SHARE
Answered By 0 points N/A #167256

Error in rule Rule0, in document part1 ipt

qa-featured
Hello,
 
It is because of ;
1. IDispatch::Invoke() with wFlags set only to DISPATCH_METHOD
Solution :
You must set the DISPATCH_PROPERTYGET flag. You need to explicitly modify the generated .cpp file.
If you are using Office 97, It is done by the Microsoft Visual C++ Class Wizard Automatically.
 
2. The IDispatch pointer that you are using is not valid.
Solution: It could be for Office 95 because object X and Y could both be implemented through one IDispatch interface
 
3. The dispid is invalid.
Solution: verify that this is a valid dispid (IDispatch::GetIDsOfNames(). )
 

Related Questions