[wix-users] Update progress status with custom dynamic text
Nir Bar
nir.bar at panel-sw.com
Tue Jun 13 21:43:13 PDT 2017
MsiProcessMessage has full documentation on record fields. Generally, you define a template for ActionData messages with ProgressText element.
<ProgressText Action="MyAction" Template="My name is [1]"/>
Then, in the custom action code, you send records with the template parameters.
using (Record rec = new Record(2))
{
rec[1]= "Oscar Acosta";
session.Message(InstallMessage.ActionData, rec);
}
--Independent WiX Expert. Creator of-
https://JetBA.net - Native and WPF WiX BootstrapperApplication Frameworks
More information about the wix-users
mailing list