Hi Christian,
in VFP2C32FRONT, the generated wrapper code is missing the closing string delimiters in the _MemberData property, for example:
in VFP2C32FRONT, the generated wrapper code is missing the closing string delimiters in the _MemberData property, for example:
_MemberData = '<VFPData>' + ;
'<memberdata name="dcblength" type="property" display="DCBlength"/> + ;
'<memberdata name="baudrate" type="property" display="BaudRate"/> + ;
'</VFPData>'
Should be_MemberData = '<VFPData>' + ;
'<memberdata name="dcblength" type="property" display="DCBlength"/>' + ;
'<memberdata name="baudrate" type="property" display="BaudRate"/>' + ;
'</VFPData>'
Notice the missing ' at the end of each line