Forum: NSIS Discussion
6th April 2010, 10:18
|
|
Replies: 10
Views: 7,403
|
Forum: NSIS Discussion
27th August 2009, 07:30
|
|
Replies: 3
Views: 3,660
|
Forum: NSIS Discussion
26th August 2009, 16:57
|
|
Replies: 3
Views: 3,660
Find what error happens during file open?
I want to find what error happens during file open for read.
Code:
ClearErrors
FileOpen $R3 "$0" r
${If} ${Errors}
DetailPrint "Error opening file '$0' for read."
${EndIf}
StrCpy $R1...
|
Forum: NSIS Discussion
20th May 2009, 12:06
|
|
Replies: 10
Views: 7,403
Tryed it
Just tried to add such section on MUI2 based installer.
The cancel button is still dissabled.
Would be nice to enable the cancel button when installing, but it's not must have for my installer.
|
Forum: NSIS Discussion
18th July 2008, 15:56
|
|
Replies: 2
Views: 2,426
|
Forum: NSIS Discussion
14th July 2008, 12:04
|
|
Replies: 2
Views: 2,426
|
Forum: NSIS Discussion
30th April 2008, 11:30
|
|
Replies: 1
Views: 1,479
Progress bar and installation size
Good morning all
I have installer, where one section writes to database.
I want to reserve a space for it in installation page progress bar.
But this section uses no real disk space, as the...
|
Forum: NSIS Discussion
15th April 2008, 06:16
|
|
Replies: 5
Views: 1,580
Hello newbie2015,
I'm now just do installer...
Hello newbie2015,
I'm now just do installer with update too. Using uninstall based on http://nsis.sourceforge.net/Uninstall_only_installed_files
This function saves list of installed files in a...
|
Forum: NSIS Discussion
14th April 2008, 14:55
|
|
Replies: 41
Views: 25,855
|
Forum: NSIS Discussion
5th March 2008, 15:01
|
|
Replies: 2
Views: 1,751
What means ^ before variable name?
Dear All,
I have HM NSIS generated code and it uses "$(^Name)..." in a string. As far as I can see, it behaves the same as "$Name..."
Why it's writen like this. What is the difference? I can't...
|