Resolve formatted table value in wix custom action

Posted by Michael Stoll on Stack Overflow See other posts from Stack Overflow or by Michael Stoll
Published on 2010-12-28T19:49:48Z Indexed on 2010/12/28 19:54 UTC
Read the original article Hit count: 429

Filed under:
|
|

Hi,

I've created certificate wix extension (extension of IisExtension). This includes a custom table, which is consumed by a custom action.

A column is defined as follows:

<columnDefinition name="Account" type="string" length="72" 
   primaryKey="yes" modularize="property" category="formatted"
   description="..." />

This column contains values like "[Property]". When the custom action reads this column like this:

hr = WcaGetRecordString(hRecCertificate, vcpqAccount, &pwzTemp);

it get's the string "[Property]". But I need "PropertyValue". How can this string be resolved?

Regards Michael

© Stack Overflow or respective owner

Related posts about c++

Related posts about wix