Forum: NSIS Discussion
17th August 2003, 13:57
|
|
Replies: 4
Views: 1,894
|
Forum: NSIS Discussion
12th August 2003, 08:29
|
|
Replies: 3
Views: 1,648
I've had similar problems with Hotsync when...
I've had similar problems with Hotsync when removing a conduit. I suspect it has something to do with with the Add/Remove Programs monitoring of the files under the directory you're uninstalling from...
|
Forum: NSIS Discussion
10th August 2003, 15:57
|
|
Replies: 12
Views: 3,969
Ok, think I've got it nailed. Turns out the...
Ok, think I've got it nailed. Turns out the problem is wsprintf (the sprintf built into kernel32.dll) not being able to write out more than about 1024 bytes. Of course, I figured this out after I...
|
Forum: NSIS Discussion
7th August 2003, 17:43
|
|
Replies: 12
Views: 3,969
Gah, sorry if it's Dumpstate's fault.
...
Gah, sorry if it's Dumpstate's fault.
Dumpstate is passed the maximum string length by NSIS, and barely uses it - Dumpstate just uses the NSIS buffers except when editing a string, where it will...
|
Forum: NSIS Discussion
12th March 2003, 05:47
|
|
Replies: 8
Views: 2,661
|
Forum: NSIS Discussion
11th March 2003, 06:49
|
|
Replies: 8
Views: 2,661
InstallOptions in a Section, not a Page
Hi everyone (and NSIS coders in particular :) )
InstallOptions crashes for me in NSIS 2beta0. Specifically, it appears to work until I click a button at the bottom of the dialog. Searching the...
|
Forum: NSIS Discussion
11th March 2003, 01:50
|
|
Replies: 42
Views: 5,743
The message you're thinking of is...
The message you're thinking of is WM_CTLCOLORSTATIC
You probably want something like this:
case WM_CTLCOLORSTATIC:
{
HWND ctl = (HWND)lp;
HDC hdc = (HDC)wp;
if(ctl ==...
|
Forum: NSIS Discussion
23rd February 2003, 10:24
|
|
Replies: 2
Views: 1,681
DumpState - a debugging tool for NSIS
I've written a plugin which, when called, gives you a dialog that displays and lets you change variables and the stack. I've been using it to help debug and refactor an installer script.
You can...
|