Re: [WiX-users] Updating msi database (install time) [P]

2013-07-25 Thread Enrique Domínguez
Hi, Thansks Blair, all worked as you told. Cloning current record, deleting and using InsertTemporary method of view object with new record do the trick. Yes, Phil, thats right, I tested a lot of ways and sent the last one. Database object could do updates without using records at all (as poin

Re: [WiX-users] Updating msi database (install time) [P]

2013-07-23 Thread Phil Wilson
ow. Phil -Original Message- From: Enrique Domínguez [mailto:edoming...@goalsystems.com] Sent: Tuesday, July 23, 2013 6:41 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Updating msi database (install time) [P] Hi, I'm doing that because I need on t

Re: [WiX-users] Updating msi database (install time)

2013-07-23 Thread Blair Murri
You can only update temporary rows and tables at install time, not persistent rows. What you can do is delete the row you wish to update and then insert a new temporary row with the data you need. Enrique Domínguez wrote: Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an upda

Re: [WiX-users] Updating msi database (install time) [P]

2013-07-23 Thread Enrique Domínguez
discussion for Windows Installer XML toolset. Asunto: Re: [WiX-users] Updating msi database (install time) [P] Classification: Public Enrique, Why are you using a custom action to change the banner of the MSI? There is a WIX element to do that: Regards, Steve -Original Message- Fro

Re: [WiX-users] Updating msi database (install time)

2013-07-23 Thread Enrique Domínguez
nt: Tuesday, July 23, 2013 6:10 AM To: "wix-users@lists.sourceforge.net" Subject: [WiX-users] Updating msi database (install time) Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a custom action at install time, for changing installer

Re: [WiX-users] Updating msi database (install time) [P]

2013-07-23 Thread Steven Ogilvie
@lists.sourceforge.net Subject: [WiX-users] Updating msi database (install time) Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a custom action at install time, for changing installer's banners. It's C#

Re: [WiX-users] Updating msi database (install time)

2013-07-23 Thread Christopher Painter
"wix-users@lists.sourceforge.net" Subject: [WiX-users] Updating msi database (install time) Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a custom action at install time, for changing installer's ba

[WiX-users] Updating msi database (install time)

2013-07-23 Thread Enrique Domínguez
Hi, I'm working with wix-3.6 over VS2005 and I'm trying to make an update in a custom action at install time, for changing installer's banners. It's C# code and looks like: Microsoft.Deployment.WindowsInstaller.Database db = session.Database;