Re: [WiX-users] Change font size in RTF display of ScrollableText (LicenseAgreementDlg)

2009-03-31 Thread Tom Kazimiers
Sascha, thanks for your reply. I already read somewhere that modern RTF editors maybe not work with WiX. So, like you suggested, I tryed it with WordPad - but this did not work either. The display of the text is no problem at all - it gets shown. Currently to font sie is about 10pt - which I want

Re: [WiX-users] http namespace reservation in WIX

2009-03-31 Thread Marcus Gelderie
Ok, so just in case somebody else struggles with this: It's resolved. The problem was not WIX after all. I had simply forgotten that my CA was accessing a msi property and deferred CA's can't do that. So when I changed my CA from immediate to deferred, it couldn't gather all its necessary

[WiX-users] Different msi name for x86 and x64 build

2009-03-31 Thread Maciej Oszutowski
Hi, Is there any way (except renaming msi after building) to condition msi file name in Votive? I have x86 and x64 installers built from single source file. Platform-specific components and other stuff are conditioned using ?if? statements. Now I really need 32bit installer to be named

[WiX-users] MMC 3.0 SnapIn install

2009-03-31 Thread gbinfo
Hi all, I tried to create a setup for a managed MMC SnapIn using WixPSExtension but I keep getting unresolved bind-time variable errors. Error line is like this: error LGHT0298: Unresolved bind-time variable !(bind.assemblyName.xxx.dll), Version=!(bind.assemblyVersion.xxx.dll),

Re: [WiX-users] MMC 3.0 SnapIn install

2009-03-31 Thread Christopher Karper
I was under the impression that the WixPSExtension was specifically to register power shell extensions, and wouldn't support generic MMC plugins. I just did my registration manually. I could be wrong though, maybe things have changed since my MMC extension installer was written. Chris On Tue,

Re: [WiX-users] Different msi name for x86 and x64 build

2009-03-31 Thread Christopher Karper
You can use msbuild properties (such as $(Platform)) in the output file name... However, there's an open bug against Votive that it escapes the control characters for now. If you open the project file directly and make your change, it works. I use it like this today. Chris On Tue, Mar 31,

Re: [WiX-users] MMC 3.0 SnapIn install

2009-03-31 Thread Gerhard Bremer
You're right, as I found out by now, using WixPSExtension is different from what InstallUtil does. But I remember a WixMMCExtension in V2.x. What happened to that one? Was it thrown out or has it just not yet been ported to V3? -Ursprüngliche Nachricht- Von: Christopher Karper

[WiX-users] Detecting Duplicate Rows in a Wix Extension

2009-03-31 Thread jnewton
I created a WiX extension for my group to use and there is a scenario where I need to check to see if a row that I'm adding to a table, already exists. Now, I tried the route of 1) Invoking CreateRow 2) Getting the Table reference from the row object 3) Looping through all the rows in the

Re: [WiX-users] Heat missing some RegistryValue elements (Programmable) from VB6 code?

2009-03-31 Thread Brian Rogers
Hey Roy, Can you download the latest build of heat and try again? There were some bugs in the registry harvesting that got reported and I fixed. I am not sure that this would directly fix you issues however. If it does not, I would like you to open a bug on source forge with the issue, the steps

Re: [WiX-users] Heat missing some RegistryValue elements (Programmable) from VB6 code?

2009-03-31 Thread Neil Sleightholm
I have just tried the latest version 3.0.5120.0 and the programmable attribute on is set for your dll on the ClassId e.g. Class Id={5A5DBDF3-10F1-43D1-AA51-CDE7EDFA0321} Description=PRISMXMLEditor.XMLChunk Version=12.3 Programmable=yes If you are not already you may also want to try the -svb6

[WiX-users] custom action 51

2009-03-31 Thread Arthur Curvello
How to execute a custom action 51 (the one that sets a property with a value of another property) before the installation.. I mean just before the UI dialogs appear. It seems to run only during progress dialog. But I need to show this value, as default, in an edit box. Thanks, Arthur

[WiX-users] Uninstall / Update forgetting files?

2009-03-31 Thread Adam Burton
Hi, there is something I am obviously doing seriously wrong with a particular installer I have, but I am clueless as to what. Installing, works great, however then when I come to uninstall, or update, a majority of the time it simply executes custom actions and leaves it at that (on uninstall

Re: [WiX-users] custom action 51

2009-03-31 Thread Chad Petersen
You want to schedule it in the InstallUISequence, rather than the InstallExecuteSequence where it sounds like you might have it now. Might be as simple as cut from one section and paste into another. An example might look like this InstallUISequence LaunchConditions

Re: [WiX-users] custom action 51

2009-03-31 Thread Don Benson
On Tue, Mar 31, 2009 at 4:12 PM, Chad Petersen chad.peter...@harlandfs.comwrote: You want to schedule it in the InstallUISequence, rather than the InstallExecuteSequence where it sounds like you might have it now. Might be as simple as cut from one section and paste into another. If the

[WiX-users] Trying to validate input info

2009-03-31 Thread David Bartmess
I'm trying to get wix to validate the input info from a dialog, and I'm running into errors. The error log is below, with the pertinent sections of the code at the bottom. Any help would be appreciated... I'm using wix 3.0.5106.0 LOG:

[WiX-users] This installation package could not be opened.

2009-03-31 Thread Michael.A.Kelley
I have a .msi I've created using Wix that seems to work on a lot of computers. However, I occasionally have reports of of clients running the .msi on their computer and getting this error message: This installation package could not be opened. Contact the application vendor to verify that

Re: [WiX-users] Trying to validate input info

2009-03-31 Thread Alex Cater
You are trying to use .NET code in a vbscript CA. I suggest you rewrite the logic in jscript or, better still, in C++ (using TR1 perhaps). If you really want to write managed custom actions then you should take a look at the Deployment Tools Foundation (DTF). -- View this message in

Re: [WiX-users] This installation package could not be opened.

2009-03-31 Thread Karl Denning
What are the circumstances when it fails? Perhaps there is another process locking the file open? I have seen this error occasionally when I try to open a package that is on a network share with orca. I presume that there is an AV scanner running on the server locking the file open. I have

Re: [WiX-users] This installation package could not be opened.

2009-03-31 Thread Michael.A.Kelley
It's hard to say the exact circumstances. The .msi is downloaded from our website, and I don't have access to the client's computer. The client that last reported this problem has his AV scanner disabled. I'll ask him if he's running it from a network share. What are the circumstances when

Re: [WiX-users] Detecting Duplicate Rows in a Wix Extension

2009-03-31 Thread jnewton
Nevermind. I figured out a good way to get what I needed. -- View this message in context: http://n2.nabble.com/Detecting-Duplicate-Rows-in-a-Wix-Extension-tp2563918p2566545.html Sent from the wix-users mailing list archive at Nabble.com.

[WiX-users] extracting wix xml from wixlibs

2009-03-31 Thread Adam Langley
Hi, I am writing a tool to make it easier to create custom WiX dialogs, can someone tell me how I would go about extracting the wix dialog files (i.e. WelcomeDlg.wxs) from the UI wixlib? I realise that I could just obtain these files from the source code, but I don't want to have to require

[WiX-users] How refer Binary file in CA

2009-03-31 Thread Michael
Hi, I'm new to Wix. I'm using Wix v2. I have dll CA. I need to pass a exe as dll CA data which is referred in binary. sample code snippet, CustomAction Id=ImportFile Property=ExecCmdLine Value='[UTIL] /import [TARGETDIR]Sample.txt' / I need to pass Binary UTIL to custom action CustomAction