Measurement Studio for VC++

cancel
Showing results for 
Search instead for 
Did you mean: 

How Can I Pass Optional Parameters to ActiveX Controls in Visual C++?

How can I pass optional parameters in Visual C++? I've added an ActiveX ComponentWorks control into my Visual C++ application, and I would like to call a function that has optional parameters. When I just leave these parameters off, I get errors!
0 Kudos
Message 1 of 2
(7,573 Views)
Hello!

Declare a VARIANT (as follows) and use that variable in the place of the optional parameters that you don't want to use:

COleVariant vOptional((long)DISP_E_PARAMNOTFOUND, VT_ERROR);

Both Visual Basic and Visual C++ allow the use of optional parameters when calling functions; however, the Visual C++ wizard that writes your C++ wrapper around the ActiveX control when it is added to the project is usually not smart enough to incorporate this functionality (since it has no idea what parameters may or may not be necessary). The way to achieve this effect is to pass a VARIANT with a special setting that the control will interpret as "not used."

In the code above, I create the variable vOptional set to this special code; I can use this variable whenever I don't want
to pass something as an optional parameter. Be sure to check the documentation for your ActiveX control to make sure that the parameter is indeed optional. For ComponentWorks controls, optional parameters are shown in brackets ([]) in the ComponentWorks Help File.

Regards,

Chris Wood
Applications Engineer
National Instruments
0 Kudos
Message 2 of 2
(7,573 Views)