繁体   English   中英

使用NSIS安装软件时,如何设置进度条文本?

[英]When installing the software using NSIS how to set the progress bar text?

安装软件时,我看到每个dll或可执行文件名称的进度。 我如何隐藏它(例如,在下面的屏幕快照中,它显示Extract res.dll 100%)并显示我自己的进度文本(例如,状态:安装EMR应用程序)

在此处输入图片说明

SetDetailsPrint控制是否在标签和/或列表框中显示说明。

Section
DetailsPrint "Start"
SetDetailsPrint listonly
DetailsPrint "Hello"
File 1234.txt ; List only
Sleep 3333
SetDetailsPrint none
DetailsPrint "World
File 5678.txt ; "Hidden"
Sleep 3333
SetDetailsPrint both
DetailsPrint "Finished"
SectionEnd

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM