Re: [WiX-users] Adding records to MSI on the fly

2007-03-28 Thread carlldev
Hi, You need both those functions. The second function should be called when the next button is clicked on the dialog used to select the website. This can be done by using InstallExecuteSequence, probably before InstallValidate. The first action can be called anytime before the dialog used to s

Re: [WiX-users] Adding records to MSI on the fly

2007-03-27 Thread Voranc Kutnik
Hello! I also have a problem with populating combobox with web sites and later use selected web site for creating virtual directory. Should my VB script have two functions: GetWebSites() and PopulateMSIWebSiteProperties()? Function GetWebSites populates combobox and function PopulateMSIWebSitePr

Re: [WiX-users] Adding records to MSI on the fly

2007-02-09 Thread carlldev
To get the installation to work you will need to specify the port aswell. To do this use a property: To get the port of the selected site should be easy when you use this: '=== ' This function populates the MSI propertie

Re: [WiX-users] Adding records to MSI on the fly

2007-02-07 Thread Matthew Rowan
I am trying to allow users to select which WebSite they wish to install a virtual directory under. I have used the method describe here which gives me the list however the virtual directory is still installed under the default web site since the port of the Web Address is the same. This is my decl

Re: [WiX-users] Adding records to MSI on the fly

2007-02-01 Thread carlldev
I found an article somewhere that states that the values in the tables that were there when the MSI started cannot be removed or updated. Removing the Listitem from the Combobox also didn't work because that dropped the whole table all together as there are no other comboboxes. So I figured out 2

Re: [WiX-users] Adding records to MSI on the fly

2007-02-01 Thread Rob MacFadyen
view.Execute End Sub Regards, Rob -----Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of carlldev Sent: Thursday, February 01, 2007 4:59 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Adding records to MSI on the fly Thanks Rob, that di

Re: [WiX-users] Adding records to MSI on the fly

2007-02-01 Thread carlldev
Thanks Rob, that did the trick. Now I have another problem - how do I remove the dummy record from the combo table? I have to add the dummy value to the combo for the combo table to be created in the msi, but then I can't remove it. Here is what I tried Sub DeleteFromComboBox(ByVal comboProp)

Re: [WiX-users] Adding records to MSI on the fly

2007-01-31 Thread Rob MacFadyen
nd If Next End Function Regards Rob -Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of carlldev Sent: Wednesday, January 31, 2007 1:12 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Adding records to MSI on the fly (Wix3, WIN2K3) Sorry if thi

[WiX-users] Adding records to MSI on the fly

2007-01-31 Thread carlldev
(Wix3, WIN2K3) Sorry if this is posting a duplicate, but I can't get the solutions from any of the posts to work... I'm trying to add the details of installed Websites to a combobox on the fly. I can see the custom action being executed, but the records are not being added to the table. I know th