[WiX-users] How to enable and disable a control button depending on result of a condition ?

2007-04-21 Thread teckJBMsia
Hi, I wish to enable an "OK" button if the folder path choose by user does not exist on the machine and disable the "OK" button if the folder already exist. In order words, the user only can create the target folder if it does not exist on the machine. Following are my code :

[WiX-users] wix error code LGHT0112

2007-04-21 Thread teckJBMsia
Hi, What might be the cause of the error with the error code of LGHT0112 ? The following might be the code which produces the error code : The name of the DLL is ChkProgDLL.dll and the function is in namespace = ChkProgDLL , class = Class1 and the function name is CheckProgramExist

Re: [WiX-users] Remove a section using XmlFile

2007-04-21 Thread Kevin Burton
I am using Wix 2.0 4820 which is I believe the latest. XmlConfig is not listed in the documentation (.chm). From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Saturday, April 21, 2007 2:14 PM To: Kevin Burton Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Remove a section using Xml

Re: [WiX-users] capturing text change event

2007-04-21 Thread Bob Arnson
Richard wrote: > This is similar to what I was suggesting, except that the separate > button is just the Next button on the dialog. In other words, put > your input validation in the Next button and display a modal error > dialog if there's a problem, otherwise continue to the next dialog in > you

Re: [WiX-users] Remove a section using XmlFile

2007-04-21 Thread Bob Arnson
Kevin Burton wrote: Do you know the syntax of XmlConfig? I am using Wix 2.0 I don't find XmlConfig in the documentation I must need to upgrade to the "unstable" verstion 3.0. Correct? No. XmlConfig was back-ported to v2. You might need to upgrade your build of v2. With XmlConfig there i

Re: [WiX-users] Remove a section using XmlFile

2007-04-21 Thread Kevin Burton
XmlFile has a deleteValue action but it deletes the "text" from a given node. I have a bunch of nodes within the node that I want to delete. From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Saturday, April 21, 2007 12:19 PM To: Kevin Burton Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX

Re: [WiX-users] Remove a section using XmlFile

2007-04-21 Thread Kevin Burton
Do you know the syntax of XmlConfig? I am using Wix 2.0 I don't find XmlConfig in the documentation I must need to upgrade to the "unstable" verstion 3.0. Correct? With XmlConfig there is a Path and a VerifyPath. The documentation indicates that it is required for 'delete'. Again an example syntax

Re: [WiX-users] capturing text change event

2007-04-21 Thread Richard
In article <[EMAIL PROTECTED]>, Bob Arnson <[EMAIL PROTECTED]> writes: > Lindsay Harris wrote: > > > > Bob, thanks so much for your response. So I wonder, is there any way > > to force a refresh or redraw of a WIX dialog? > > > > None that I'm aware of. The general approach is to have a s

Re: [WiX-users] Remove a section using XmlFile

2007-04-21 Thread Bob Arnson
Kevin Burton wrote: I am trying to remove complete section using the XmlFile task. Under configuration there is a section. I want to completely remove it. I don't know if XmlFile supports it, but the newer XmlConfig action does, with an explicit Action="delete" attribute. -- sig://boB

Re: [WiX-users] How to avoid running two instances of MSI through WIX

2007-04-21 Thread Bob Arnson
vishvas wrote: > But i observed end user can easily run two instances of MSI at the same > time. > Only two instances of the UI -- MSI prevents multiple installations from running. > I want to avoid this thing. > Can any one give me idea to how to do this using WIX ? > There's no support

Re: [WiX-users] upgrade and UI question...

2007-04-21 Thread Bob Arnson
Robert Randall wrote: > When an upgrade is launched the default dialog that appears is not what I > need. What are the recommended ways of displaying a more elaborate upgrade > dialog. The "continuing the installation" will confuse my users and > generate support calls. > It sounds like you'r

Re: [WiX-users] custom action conditioned on selected features

2007-04-21 Thread Bob Arnson
Hongping Lim wrote: I have a custom action that I want to run, but only if the user has selected and installed a specific Feature. Is there an expression or property to use to determine whether a particular Feature has been selected? You can use &FeatureId to detect the action state of a

Re: [WiX-users] changing setup at runtime

2007-04-21 Thread Bob Arnson
Nitin Chaudhari wrote: > I think we have different requirements, I want this guid to be filled > up by my webpage, so that my webserver knows which GUID is given to > the user who was logged in and who downloaded the setup. Be *very* careful with that approach. MSI requires, for example, that e

Re: [WiX-users] UI: Features in a ListBox

2007-04-21 Thread Bob Arnson
fiordean dacian wrote: How to I know within the AddLocal and Remove events for the Next button which entry is selected in the listbox? Just like you proposed. -- sig://boB http://bobs.org - This SF.net email is sponsored

Re: [WiX-users] WIX - Custom Action calling EXE (with a dependent DLL)

2007-04-21 Thread Bob Arnson
Sankaranarayanan wrote: > In my installer - I have a custom action which calls an EXE to perform some > operation. > At the end of the installation, I want to make sure that the EXE used in the > Custom Action is deleted from the system. I don't want to ship the EXE to > clients. > Remember

Re: [WiX-users] Release and debug installations.

2007-04-21 Thread Bob Arnson
Kevin Burton wrote: Title="[ProductName] [Setup] [var.Configuration]" NoMinimize="yes"> You need to use the same $(var.name) syntax everywhere. -- sig://boB http://bobs.org - This SF.net email is sponsored by DB2 Expre

Re: [WiX-users] capturing text change event

2007-04-21 Thread Bob Arnson
Lindsay Harris wrote: Bob, thanks so much for your response. So I wonder, is there any way to force a refresh or redraw of a WIX dialog? None that I'm aware of. The general approach is to have a separate button (or double-up the Next button) that triggers the check. (e.g., "Server name"

Re: [WiX-users] Access Violation whilst cabing

2007-04-21 Thread Bob Arnson
martin lavelle wrote: I can't get the Cabinet larger than 577,667,792 Bytes. The informal recommendation is that CABs should be less than 200MB for best performance. Can you break your setup into multiple CABs? I can't see a bug for this one, though bug 1672584 might be connected. If you th

Re: [WiX-users] Where to install samples

2007-04-21 Thread Bob Arnson
Brian Cardiff wrote: > Do you have any suggest of self-extraction tools that allow feature > like selection and store registry information? because that are the > things that the Source code installer/samples installer actually do. Once you start needing other things like registry values, MSI is

[WiX-users] Remove a section using XmlFile

2007-04-21 Thread Kevin Burton
I am trying to remove complete section using the XmlFile task. Under configuration there is a section. I want to completely remove it. This doesn't work: Thank you. Kevin - This SF.net email is sponsored by DB

[WiX-users] capturing text change event

2007-04-21 Thread DE�K JAHN, G�bor
On Fri, 20 Apr 2007 16:31:36 -0600, Richard wrote: Richard, > You've asked about a task without stating the goal. It was there in the first letter: "As an example, lets say I wanted to enable the next button on a dialog, but only once the user has typed in a valid string in a text control. I

[WiX-users] ComboBox listing IIS WebSites

2007-04-21 Thread Wouter Demuynck
Hello, I am trying to fill a ComboBox UI element with the list of IIS sites on the localhost. I have read several scripts on this mailing list and tried them out, but none of them seem to work. I'm getting an error prompting that "error 2205" ocurred. I am using WiX 3 and Votive to do this. I