Go Back   Winamp & Shoutcast Forums > Search Forums

Showing results 1 to 24 of 24
Search took 0.00 seconds.
Search: Posts Made By: Corpio
Forum: NSIS Discussion 22nd July 2008, 14:28
Replies: 11
Views: 1,933
Posted By Corpio
Now I think I have understand how it works but I...

Now I think I have understand how it works but I don't find a solution. I tried to reserve all files or comment a part of my code but I have always a latency period somewhere.

No ReserveFile
=>...
Forum: NSIS Discussion 21st July 2008, 14:45
Replies: 11
Views: 1,933
Posted By Corpio
The problem here is the reservations order, the...

The problem here is the reservations order, the file "Data\VeryLargeFile.dat" has to be reserved in last !!
But why ????
- because we use it before the other
- because it is the biggest
Forum: NSIS Discussion 21st July 2008, 14:29
Replies: 11
Views: 1,933
Posted By Corpio
Have you an exemple of a sub-optimal order ?

Have you an exemple of a sub-optimal order ?
Forum: NSIS Discussion 21st July 2008, 14:11
Replies: 11
Views: 1,933
Posted By Corpio
I have different situations depending on...

I have different situations depending on reservations done.

All plugins and images reserved :
=> latency period between the components page and a custom page

All plugins reserved (no images...
Forum: NSIS Discussion 21st July 2008, 13:08
Replies: 11
Views: 1,933
Posted By Corpio
I have an other problem !!!! Using the function...

I have an other problem !!!!
Using the function ReserveFile, the latency period is now correct ... at the installer execution but now I have a latency period between a components page and a custom...
Forum: NSIS Discussion 21st July 2008, 12:38
Replies: 11
Views: 1,933
Posted By Corpio
Thanks LoRd_MuldeR, I thought also about this...

Thanks LoRd_MuldeR, I thought also about this solution so I apply it and the latency period is now correct.
But I don't understand why I had not the messages "verifying package: ??%" and "unpacking...
Forum: NSIS Discussion 21st July 2008, 09:40
Replies: 11
Views: 1,933
Posted By Corpio
Latency period at the execution

Hello,

I have an important latency period between the installer execution and the first page display. So users can believe the installer is not running during this period !!!

An automatic...
Forum: NSIS Discussion 18th July 2008, 15:08
Replies: 3
Views: 2,120
Posted By Corpio
Hello, I have not this interface with...

Hello,

I have not this interface with "verifying installer" and "unpacking data" when I run my installer sizing about 70Mo. Why and how can I get it ?? Because when i run the installer there are a...
Forum: NSIS Discussion 11th July 2008, 09:50
Replies: 1
Views: 1,342
Posted By Corpio
Hello lawisevil, If you are not in a admin...

Hello lawisevil,

If you are not in a admin session, you can't read/write in the HKLM root key of the registry (unless the admin give you the permissions on this root key).
So you should write...
Forum: NSIS Discussion 4th July 2008, 09:44
Replies: 6
Views: 2,123
Posted By Corpio
Hello magicpm7, It seems to me you can't use...

Hello magicpm7,

It seems to me you can't use two directory pages in the same installer !!!
Use one directory page (the directory will be stocked in $INSTDIR)
Simulate the second in a custom page...
Forum: NSIS Discussion 3rd July 2008, 15:47
Replies: 20
Views: 3,424
Posted By Corpio
And I have an other question on this topic...

And I have an other question on this topic !!!!!!!!!

It's possible to modify controls of the predefined pages as directory, components or instfiles thanks to the modification of the executable...
Forum: NSIS Discussion 3rd July 2008, 15:38
Replies: 20
Views: 3,424
Posted By Corpio
I think this bug can't be resolved simply and...

I think this bug can't be resolved simply and neatly on the script. Maybe the solution is to change something in the NSIS source but I think it's not so easy.
Now, I content oneself with a uniform...
Forum: NSIS Discussion 3rd July 2008, 14:28
Replies: 20
Views: 3,424
Posted By Corpio
Thanks Anders but I repeat, it's not me that...

Thanks Anders but I repeat, it's not me that change the static control text, it's a default action of the instfiles page.
I take inspiration from your suggestion and I put LockWindow on before and...
Forum: NSIS Discussion 3rd July 2008, 12:19
Replies: 20
Views: 3,424
Posted By Corpio
Thanks Afrow UK for your suggestion but it...

Thanks Afrow UK for your suggestion but it doesn't work.


PS :
The code given before works so - if you want - you can just copy/paste it in a .nsi file and test it to see the problem and - if...
Forum: NSIS Discussion 3rd July 2008, 10:23
Replies: 20
Views: 3,424
Posted By Corpio
Hello I tried to reproduce the problem in a...

Hello I tried to reproduce the problem in a simple installer to illustrate it.
Name "Test"
OutFile "Test.exe"

Page instfiles "" InstFilesPageShow

Function InstFilesPageShow
FindWindow $R0...
Forum: NSIS Discussion 2nd July 2008, 10:19
Replies: 20
Views: 3,424
Posted By Corpio
Hello, I have also the problem with the...

Hello,

I have also the problem with the static control on the instfiles page allowing NSIS to write the details of the installation.
I bring back the problem is : when we change the text of a...
Forum: NSIS Discussion 2nd July 2008, 07:47
Replies: 20
Views: 3,424
Posted By Corpio
Hello, We were concentrated on the Anders'...

Hello,

We were concentrated on the Anders' solution.


Actually, the solution is to use the LockWindow function :
Function .onMouseOverSection
LockWindow on
...
LockWindow off
Forum: NSIS Discussion 1st July 2008, 15:05
Replies: 20
Views: 3,424
Posted By Corpio
I'm sorry Anders but I tested different solution...

I'm sorry Anders but I tested different solution to hide and show the window without results.

Maybe I don't use the good solution !!!!!

Can you help me with little code ??

Thanks.
Forum: NSIS Discussion 1st July 2008, 14:12
Replies: 20
Views: 3,424
Posted By Corpio
Hello, I have a problem with a STATIC...

Hello,

I have a problem with a STATIC control on a components page allowing me to write the description of the section flied by the user thanks to the .onMouseOverSection callback.

When I want...
Forum: NSIS Discussion 27th June 2008, 16:19
Replies: 20
Views: 3,424
Posted By Corpio
Thank you Afrow UK, I have look this...

Thank you Afrow UK,

I have look this software quickly, I think it can help me.


PS : I may come back on this topic to ask another question about Windows and Controls so see you soon.
Forum: NSIS Discussion 27th June 2008, 15:07
Replies: 20
Views: 3,424
Posted By Corpio
Thank you LoRd_MuldeR, I found also different...

Thank you LoRd_MuldeR, I found also different examples on the forum or with the NSIS install.

But I would like to understand at what control correspond the different ids (1028, 1037, 1256, ...)....
Forum: NSIS Discussion 27th June 2008, 14:38
Replies: 20
Views: 3,424
Posted By Corpio
Window and Control

Hello everybody,

I create a topic about Windows and Controls because I think it's an important part that is not enough documented.
For exemple, I had difficulties to found information about...
Forum: NSIS Discussion 25th June 2008, 15:02
Replies: 2
Views: 1,335
Posted By Corpio
Thank you Afrow UK, I haven't see this...

Thank you Afrow UK,

I haven't see this plug-in before. I will try it.
Forum: NSIS Discussion 25th June 2008, 13:55
Replies: 2
Views: 1,335
Posted By Corpio
Tree structure of page Components

Hello,

I would like to create dynamically a tree structure such as in the page components. I use the term "dynamic" because contrary to a traditional page components, I didn't know what are these...
Showing results 1 to 24 of 24

 
Forum Jump