ActiveX Property Array import problems
2004-07-14 10:33:50 AM
cppbuilder71
I've tried importing an ActiveX control which has a runtime only,
property array. The get property works fine, i.e. i =
activeXcontrol->DataWord[0]; however the set property does not, i.e.
activeXcontrol->DataWord[0] = 10; The associated header file created
by the import shows the following:
void __fastcall set_DataWord(short index, short Param2);
short __fastcall get_DataWord(short index);
The set appears to be needing a 2nd value parameter/value.
Thanks in advance for any help,
Gary