[WiX-users] WcaAddTempRecord with ScrollableText

2006-08-21 Thread JosephMM
Since the Text attribute does not accept properties I was hoping to use a Custom Action to adjust the text based on the value of a bunch of public properties. I was looking through the Wix Tutorial(http://www.tramontana.co.hu) and found a Custom Action that was changing some Text of a ListBox(http

Re: [WiX-users] 2 License in 1 ScrollableText Control

2006-08-21 Thread JosephMM
The problem is that you're using a ScrollableText Control. The Text attribute unfortunately does not accept embedded properites (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/scrollabletext_control.asp). This is the exact same problem I have. I'm trying to write a cust

Re: [WiX-users] WcaAddTempRecord with ScrollableText

2006-08-24 Thread JosephMM
arily > // > ret = MsiViewModify(hView, MSIMODIFY_INSERT_TEMPORARY, hRecord); > > if (ERROR_SUCCESS != ret) > { > pMsiLogMessage( > hInstall, > _T("EULACA: MsiViewModify failed, error=

Re: [WiX-users] Web.Config

2006-08-24 Thread JosephMM
What you can try doing is use the XMLFile tag to alter the web.config file Simply use this in a component: Petrut Andrei wrote: > > Hi. Does anyone know how to modify a web.config > file? > I have a page in a setup where I want to let the user > to change the language of the applica

Re: [WiX-users] Stop IIS on uninstall

2006-08-24 Thread JosephMM
What I did was I had a bat file that was installed with my package. My custom action refered to the FileKey of that bat file and inside the bat file all I had was "iisreset /stop". Unfortunately, it's really ugly because a command prompt pops up. John Hidey (The C# Junkie) wrote: > > All > > H