Article ID: 142223 - Last Review: November 21, 2006 - Revision: 3.1 INFO: Variant Handling in an MFC Server w/ VB 4.0 as Its ClientThis article was previously published under Q142223 SUMMARY
It is possible for Visual Basic 4.0 to pass parameters to automation
methods either by value (ByVal) or by reference (ByRef). For a method that
expects a non-VARIANT parameter passed by value, MFC's implementation of
IDispatch will coerce a parameter passed by reference to a value. However,
this is not the case with an automation method expecting a VARIANT
parameter. The MFC framework cannot coerce a VARIANT parameter because it
does not know what type is expected by the method. This can cause problems
in a method that expects a VARIANT parameter to be passed by value. If the
parameter is passed by reference and the VARIANT is referenced directly,
the value obtained from the variant will be incorrect. Hence, an automation
method that expects a VARIANT to be passed by value should check whether it
was passed a reference and coerce the VARIANT if necessary. This article
illustrates how you could implement this.
MORE INFORMATION
Consider the following method named Add exposed by a MFC automation server
with a ProgID TestVar.Document:
Because of the possibility of the parameter being passed by reference, it is necessary to coerce the parameter to a value before using it in the automation server. Making a copy of the VARIANT parameter using the VariantCopyInd function will perform the necessary indirection, if the source VARIANT parameter passed is specified to be VT_BYREF. The following code will properly handle a VARIANT passed either by reference or by value. APPLIES TO
| Article Translations
|
Back to the top
