Inno Setup Constant in Code Section
Is there a way to get InnoSetup constant value in [Code] section? I开发者_如何学编程 need this during install time and the constant value that I am trying to get is {app}
.
You can use AppValue := ExpandConstant('{app}');
- Documentation on ExpandConstant
- Example of it's usage.
精彩评论