Go Back   Winamp & Shoutcast Forums > Search Forums

Showing results 1 to 23 of 23
Search took 0.00 seconds.
Search: Posts Made By: LaneinBC
Forum: NSIS Discussion 5th January 2006, 17:19
Replies: 6
Views: 2,686
Posted By LaneinBC
Ok, That seems to make sense (about the registry...

Ok, That seems to make sense (about the registry entries for shared DLL's). I havn't looked, but would this be what the InstallLib macro might be doing???

Lane
Forum: NSIS Discussion 5th January 2006, 16:29
Replies: 6
Views: 2,686
Posted By LaneinBC
Ok, good idea... What about the "InstallLib"...

Ok, good idea...
What about the "InstallLib" macro. Is this for this purpose?

Lane
Forum: NSIS Discussion 5th January 2006, 15:23
Replies: 6
Views: 2,686
Posted By LaneinBC
Installling/Deleting DLL files?

What is the normal method to handle the situation where you have installed a DLL file, lets say into the \Windows\System32 folder. As this could be already be there, then there is no need to re-copy...
Forum: NSIS Discussion 29th November 2005, 15:14
Replies: 6
Views: 2,291
Posted By LaneinBC
Yes, I have something like this running now. (An...

Yes, I have something like this running now. (An external log file writing system).

It looks like the "internal log" only applies to the installing/copying of file page. This is what the "Dumplog"...
Forum: NSIS Discussion 28th November 2005, 17:47
Replies: 6
Views: 2,291
Posted By LaneinBC
Ok, I put the call to DumpLog in a section I have...

Ok, I put the call to DumpLog in a section I have called "Post". It now created the external log file.
Thanks...!

What I want'd to do was to catch the log file data at the very end of the install...
Forum: NSIS Discussion 28th November 2005, 17:11
Replies: 6
Views: 2,291
Posted By LaneinBC
Yes, Here is the code fragment I used: ...

Yes, Here is the code fragment I used:

Push "C:\Test.Tmp"
Call DumpLog

Again, it is not even trying to create the file.

Thanks

Lane
Forum: NSIS Discussion 28th November 2005, 16:57
Replies: 6
Views: 2,291
Posted By LaneinBC
DumpLog usage

I am trying to use the DumpLog function as listed below:

!define LVM_GETITEMCOUNT 0x1004
!define LVM_GETITEMTEXT 0x102D
Function DumpLog
Exch $5
Push $0
Push $1
Push $2
Push $3
Forum: NSIS Discussion 16th November 2005, 17:09
Replies: 12
Views: 17,515
Posted By LaneinBC
Yes, I understand what is happenig now. Perhaps...

Yes, I understand what is happenig now.
Perhaps a future NSIS release could support something like this, or could have native array support!

Thanks

Lane
Forum: NSIS Discussion 16th November 2005, 16:57
Replies: 12
Views: 17,515
Posted By LaneinBC
Yes, that is what I initially thought too. But...

Yes, that is what I initially thought too.
But it seems the substituting "$vr$0" for "$vr1", does not work. (where $0 was set to "1").

It works in normal string substitution, but not when you...
Forum: NSIS Discussion 16th November 2005, 16:47
Replies: 12
Views: 17,515
Posted By LaneinBC
Yes, that was a "typo" on my part.. It should...

Yes, that was a "typo" on my part..
It should have been $vr$0
Forum: NSIS Discussion 16th November 2005, 16:25
Replies: 12
Views: 17,515
Posted By LaneinBC
I should have explained better. What I am...

I should have explained better.
What I am trying to do, is to read 16 different values from an INI file (State and Text) and place each one into a matching named NSIS variable. I have this working,...
Forum: NSIS Discussion 16th November 2005, 15:20
Replies: 12
Views: 17,515
Posted By LaneinBC
Lightbulb Dynamic NSIS variables?

I tried this and it did not work. I thought I would ask here to see if there was a way to do this..

Lets say we have some variables:
Var vr1
Var vr2
Var vr3

Now I wish to access variable...
Forum: NSIS Discussion 15th November 2005, 17:07
Replies: 15
Views: 2,683
Posted By LaneinBC
OK, Afrow UK's suggestion works. If I just...

OK, Afrow UK's suggestion works.

If I just use another custom page "normal" call-back function it now works properly.

There must be some restrictions as to what you can do in a "Leave"...
Forum: NSIS Discussion 15th November 2005, 16:56
Replies: 15
Views: 2,683
Posted By LaneinBC
You mean to just use another (or the next one in...

You mean to just use another (or the next one in line) custom page to process and validate the user's input from the previous custom page?

If you do that, won't you have to create another user...
Forum: NSIS Discussion 15th November 2005, 16:49
Replies: 15
Views: 2,683
Posted By LaneinBC
And here is the test2.ini file contents: ...

And here is the test2.ini file contents:

[Settings]
NumFields=8

[Field 1]
Type=GroupBox
Left=0
Right=-1
Top=0
Forum: NSIS Discussion 15th November 2005, 16:47
Replies: 15
Views: 2,683
Posted By LaneinBC
And here is the test.ini file contents: ...

And here is the test.ini file contents:

[Settings]
NumFields=8

[Field 1]
Type=GroupBox
Left=0
Right=-1
Top=0
Forum: NSIS Discussion 15th November 2005, 16:44
Replies: 15
Views: 2,683
Posted By LaneinBC
Lightbulb OK, it I have attached a small NSIS script that...

OK, it I have attached a small NSIS script that show the problem. It looks like you cannot do what I was trying to do; which was to try to display another user input dialog box for the user to enter...
Forum: NSIS Discussion 15th November 2005, 00:30
Replies: 15
Views: 2,683
Posted By LaneinBC
Ok, I will try to attach a script that shows the...

Ok, I will try to attach a script that shows the problem tommorrow. (Have to leave right now). Thanks for you help so far.

Lane
Forum: NSIS Discussion 15th November 2005, 00:24
Replies: 15
Views: 2,683
Posted By LaneinBC
Yes, this is what I have in the script now. I...

Yes, this is what I have in the script now.
I have the "Pre" call-back function" (FirmwareDownloadsSelectPage) and the "Leave" call-back function: FirmwareDownloadsSelect_LeavePage.

This is what...
Forum: NSIS Discussion 15th November 2005, 00:17
Replies: 15
Views: 2,683
Posted By LaneinBC
Ok, I tried this. Changed the page line to: ;...

Ok, I tried this. Changed the page line to:
; Select Firmware Downloads Page:
Page custom FirmwareDownloadsSelectPage "" FirmwareDownloadsSelect_LeavePage

But when compiling the script, it warns...
Forum: NSIS Discussion 14th November 2005, 23:57
Replies: 15
Views: 2,683
Posted By LaneinBC
What I tried, was to comment out the line: ...

What I tried, was to comment out the line:
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "GMCEIPAddrGet.Ini"
and the installer run further, but eventually dies a bit later on. I must be doing something...
Forum: NSIS Discussion 14th November 2005, 23:54
Replies: 15
Views: 2,683
Posted By LaneinBC
But, what I am trying to do, is to analyse the...

But, what I am trying to do, is to analyse the user's inputs to the custom input page. Based on what the user has entered, I then start doing other stuff.

I read that custom pages don't have a...
Forum: NSIS Discussion 14th November 2005, 23:26
Replies: 15
Views: 2,683
Posted By LaneinBC
Angry Installer just quits running?

Has anybody seen this type of problem? What appears to be happening is that while running the executable, it just quits with no error messages at all.

I have traced it down to trying to display an...
Showing results 1 to 23 of 23

 
Forum Jump