jdt2oo7
26th January 2010 02:17 UTC
Detail print above progress bar
I would like to display message "Installing product..." above progress bar in Installing window.
I use:
SetDetailsPrint both
DetailPrint "Installing product..."
but only see the message in the detail box.
See attached picture for more detail.
Thanks!
CrushBug
26th January 2010 04:50 UTC
But there are 4 more messages after that DetailPrint and it seems that last one is showing up just fine.
Are you trying to say that you wanted the top message to sorta "hold" at the "Installing product..." message and the details below to change independently?
jdt2oo7
26th January 2010 06:07 UTC
I want to display the message "Installing product..." in the top red box. Currently, it's displayed in the lower red box.
MSG
26th January 2010 07:27 UTC
How about
setdetailsprint text
DetailPrint "Installing product..."
setdetailsprint list
DetailPrint "Blah blah"
http://nsis.sourceforge.net/Docs/Cha...html#4.9.14.14
It's all there in the manual, you know...
AuGuS666
26th January 2010 19:11 UTC
Re: Detail print above progress bar
Originally posted by jdt2oo7
I would like to display message "Installing product..." above progress bar in Installing window.
I use:
SetDetailsPrint both
DetailPrint "Installing product..."
but only see the message in the detail box.
See attached picture for more detail.
Thanks!
ShowInstDetails show
Section "Install 1"
SetDetailsPrint textonly
DetailPrint "Instaling bla bla bla (1/2)..."
SetDetailsPrint none
....
....
....
SectionEnd
Section "Install 2"
SetDetailsPrint textonly
DetailPrint "Instaling bla bla bla (2/2)..."
SetDetailsPrint none
....
....
....
SectionEnd
jdt2oo7
4th February 2010 23:07 UTC
The problem I ran into was: I had "SetDetailsPrint none" after ExecWait command, I wasn't able to see "Installing MS Redistribution..." because detail from ExecWait displays right after that. Thanks all for helping.
---------------
SetDetailsPrint both
DetailPrint "Installing MS Redistribution ..."
SetDetailsPrint none
ExecWait '"$EXEDIR\Products\Microsoft Redistribute\vcredist_sp1_x86.exe" /q' $ExitCode4