How to move the progress bar during custom actions

The installer is missing a progress bar when starting a custom action. We are using a custom C # immediate code action.

Are there other ways to show the progress of a custom action?

Favorable thanks \ Velit

+2


a source to share


1 answer


Use the ProgressText element.

The "Template" attribute is where tokens should be placed to reflect progress. See, for example, the standard action InstallFiles. The ActionData Messages table lists the possible tokens for this action.

Example:

<ProgressText Action="InstallFiles" Template="File: [9][1]">!(loc.InstallFilesActionText)</ProgressText>

      



Outputs:

File: C: \ Program Files \ MyApp \ bin \ my.dll

and etc.

+1


a source







All Articles