DeviceType is a "private" property, not a "public" property. Private
properties cannot be shared between the UI sequence and the execution
sequence. As a result, the property in the execution sequence starts out and
only ever gets its value from the Property table.

If you intend to use the property's value in the execution sequence (to
store it, for example), you really need to do two things: make it public,
and make it secure.

To make it public, change its name to all upper-case: DEVICETYPE (or
DEVICE_TYPE which might be more readable). To make it secure, add the
attribute Secure="yes" to your Property element declaring the property.

...
<Property Id="DEVICE_TYPE" Secure="yes">2</Property>
...

-----Original Message-----
From: Алексей Старчиков [mailto:vun...@bk.ru] 
Sent: Tuesday, February 02, 2010 5:24 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Storing variale value after installation

...
<Property Id="DeviceType">2</Property>
...


------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to