Archive: Detail print above progress bar


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!


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?


I want to display the message "Installing product..." in the top red box. Currently, it's displayed in the lower red box.


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...


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


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