cinder829
4th November 2001 05:30 UTC
NSIS Show Details Button appears when it shouldn't
Has anyone else noticed that in the more recent versions of NSIS (~1.60-1.62), the Show Details button that appears when NSIS finishes installing shows itself sometimes even when it's already showing the details of the install? It's been happening to me lately and it's really annoying. Is there a way to fix it or has the NSIS team been notified?
petersa
5th November 2001 04:46 UTC
It happened to me once. I don't know how I fixed it, but try as I might now, I can't get it to happen again!
cinder829
5th November 2001 22:27 UTC
Does anybody know why it does that?
petersa
7th November 2001 07:25 UTC
I don't, but I've written a script that does it, so it'll probably get fixed soon.
Caption 'List Root Folder'
OutFile 'List Root Folder.exe'
ShowInstDetails NeverShow
CompletedText 'List of All Files under Root Folder:'
Section
SetDetailsPrint TextOnly
DetailPrint 'Listing all files under root folder...'
Call ListFiles
SetDetailsPrint TextOnly
SetDetailsView Show
SectionEnd
Function ListFiles
SetDetailsPrint ListOnly
FindFirst $0 $1 \*.*
DoStuff:
DetailPrint $1
FindNext $0 $1
IfErrors 0 DoStuff
FunctionEnd