Re: [WiX-users] Question about writing custom actions...

2007-06-28 Thread Don Tasanasanta
Check for the property called REMOVE. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rory Clark Sent: Thursday, June 28, 2007 1:47 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Question about writing custom actions... ...how do

Re: [WiX-users] Question about writing custom actions...

2007-06-28 Thread Mike Dimmick
The WiX custom actions perform their install/uninstall actions on a per-component basis by calling MsiGetComponentState. If the resource is currently installed locally or to run from source, and the action is to make it absent or removed, the uninstall tasks are performed. It's probably a good idea

Re: [WiX-users] votive project reference to wixlib

2007-06-28 Thread Justin Rockwood
There shouldn't be any other differences when building from the command line vs. the IDE. It is probably just a bug. Want to file it? Thanks, Justin From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steve Baker Sent: Thursday, June 28, 2007 12:43 PM To: wix-users@lists.sourcef

[WiX-users] Question about writing custom actions...

2007-06-28 Thread Rory Clark
...how do I tell if I am uninstalling a product or installing it? We have a library we've written to do some configuration changes, but now we want to different things when a user installs and when a user uninstalls. I poked through the MSI SDK, but nothing really jumped out while skimming the CHM

Re: [WiX-users] ComboBox and properties, how does it work?

2007-06-28 Thread Pierson Lee (Volt)
First of all, you probably need to set a public property. Then you assign the property to the combo box, so that when your directory tag is called, it will look for that property. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of md5hans Sent: Thursday, J

Re: [WiX-users] votive project reference to wixlib

2007-06-28 Thread Steve Baker
i tried running my solution from msbuild instead of from the ide and get the following error: light.exe : error LGHT0103: The system cannot find the file '..\uilib\bin\Debug\uilib.wixlib' with type 'Source'. the solution builds fine through the ide. i have < DefineSolutionProperties > false

Re: [WiX-users] Replacing the stock bitmaps

2007-06-28 Thread Pierson Lee (Volt)
I replaced the stock ones in that folder, but I also have two lines: I don't have problems with the chm file that comes with the zip. Maybe yours is bad? Hope that helps --pierson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday

Re: [WiX-users] Replacing the stock bitmaps

2007-06-28 Thread Robert.Priest
Thanks john and eddie. From: John Vottero [mailto:[EMAIL PROTECTED] Sent: Thursday, June 28, 2007 11:53 AM To: Robert Priest; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Replacing the stock bitmaps The "cannot display webpage" problem with the chm is caused by the file being m

[WiX-users] Extensions and Schemas

2007-06-28 Thread K-ballo
I'm working on a very simple extension, and I have a question about the schema. My main element will have Product as parent, and I would like to limit the number of sibblings to just one, so only one instance of my element can be used in a project. How can I accomplish this kind of restrictions

[WiX-users] votive project reference to wixlib

2007-06-28 Thread steve baker
I have a wixlib project in my solution that houses my custom UI. When I add a project reference to that wixlib project from my msi project it doesn't resolve. I found that I can add a reference directly to the wixlib file and it works. I was just wondering if that is the expected way to add referen

Re: [WiX-users] ICE54 - Bug in Wix2 (2.0.5325.0)?

2007-06-28 Thread Rob Mensching
It is a bug. File/@KeyPath isn't ignored, it just doesn't handle the case that you're doing. In particular, KeyPath="no" does not say "do not allow this file to be the key path." The work around is quite simple. Specify the Component/@KeyPath="yes" and that will correctly set the KeyPath Yo

Re: [WiX-users] votive project reference to wixlib

2007-06-28 Thread Justin Rockwood
There are actually two bugs here (or NYI features, however you'd like to view it J). The first bug is that Votive (.wixproj) projects actually don't work with project references right now (meaning that you can't have a project reference to another wixproj and have it generate the preprocessor varia

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-28 Thread Christopher Painter
And your efforts are very much appreciated. I hope to be using WiX for my production installs by the end of the year. Regards, Chris Rob Mensching <[EMAIL PROTECTED]> wrote: v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);

[WiX-users] adding files

2007-06-28 Thread Per
Hi. Is there any gui tool for adding project output, from a c# project and it's dependencies, to a wix project? Or do I have to add the files manually in the xml? In a VS deployment project, it's easy to add output from one project to the deployment project, is there anything similar when using w

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-28 Thread Rob Mensching
Thank you, your suggestion is very much appreciated. Note I do believe that dark can often get quite a bit of the original MSI (assuming it is mostly valid) translated into .wxs code. Thus I don't think most people have to start completely from scratch. Of course, there is always room to impr

[WiX-users] IP address restriction in IIS

2007-06-28 Thread Brian Flynn
Hi, Is it possible to set IP address restriction in virtual directories in IIS? Cant see it in the WebDirProperties element. - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version o

Re: [WiX-users] Replacing the stock bitmaps

2007-06-28 Thread John Vottero
The "cannot display webpage" problem with the chm is caused by the file being marked as downloaded from another computer. Right click on the chm and pick "Properties", there should be an "Unblock" button near the bottom on the first tab. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [WiX-users] Replacing the stock bitmaps

2007-06-28 Thread Eddie McCreary
[EMAIL PROTECTED] wrote: > > In earlier wix v3 builds you could add a Bitmaps dir and replace > bannrbmp.bmp and dlgbmp.bmp with your own images. But in 3.0.2925.0, > that doesn’t seem to work. > > How am I supposed to override the stock bitmaps in this version? > You define a variable on the lin

[WiX-users] Replacing the stock bitmaps

2007-06-28 Thread Robert.Priest
In earlier wix v3 builds you could add a Bitmaps dir and replace bannrbmp.bmp and dlgbmp.bmp with your own images. But in 3.0.2925.0, that doesn't seem to work. How am I supposed to override the stock bitmaps in this version? I have listed a blurb from the article below. Also, can a

Re: [WiX-users] Multiple MSI's

2007-06-28 Thread Brent Schmaltz
I think that is a good idea and will work for one mode. The other issue is I need a slient redist that an app builder can add to their MSI.> Date: Wed, 27 Jun 2007 18:57:16 -0600> From: [EMAIL PROTECTED]> To: [EMAIL PROTECTED]> Subject: Re: [WiX-users] Multiple MSI's> CC: wix-users@lists.sourc

[WiX-users] ComboBox and properties, how does it work?

2007-06-28 Thread md5hans
Hi! I'm very new to WIX and are trying to understand how to use a Combox in a Dialog. I want to present a combox with some values that has been filled by an CustomAction. I want to use the selected value to control in wich folder a file will be placed. I have managed to show the combbox and fill

[WiX-users] erbium plop hippocratic :

2007-06-28 Thread Elvis Lara
Hello, Visit our new online store and save. http://www.loudlow.com/ All popular ones are available with free shipping worldwide with no need for any visits. http://www.loudlow.com/ Dr. Heriberto Weiss - This SF.net email

[WiX-users] ICE54 - Bug in Wix2 (2.0.5325.0)?

2007-06-28 Thread spa
Hi all. WiX2 2.0.5325.0 I am using following code in my project: Validation of resultin package ends with warning from ICE54: Component 'C_SQLite_dll' uses file 'SQLite_dll' as its KeyPath, but the file's version is provided by the file 'Core_dll'. After clearing the KeyPath value

[WiX-users] McGowan flirts with no-hitter in Jays win

2007-06-28 Thread Sales
It doesn't seem good for ya.. and you can't call yourself a Man, from the capital letter M, because your dick is damn short? It's not a problem anymore with our brand new remedy pills that will make your dick REALLY BIGGER! Check out our rock-bottom prices for this remedy on: http://www.alter

[WiX-users] determine selected item in listbox

2007-06-28 Thread Stanislav Martinek
Can anybody tell me how to determine which item is selected in listbox i fany? Thanks - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No l

Re: [WiX-users] schema problem while compiling the decompiled msi

2007-06-28 Thread Christopher Painter
I would suggest that Dark should have a higher priority since this a tool that can provide a good migration path for users using other toolsets. Not everyone wants to do a complete reauthor of their installer solutions using a text editor just to use a new toolset. Rob Mensching <[EMAIL PROTE

Re: [WiX-users] Shortcuts and components

2007-06-28 Thread Ward, Mike (MED US)
I suspect most of this is just my ignorance of the how MSI installers work. Visually, the XML suggests the association. I think it pretty natural for someone to think the shortcuts would be associated with the files here, not the component. In fact, I'm still a little perplexed by it. After

Re: [WiX-users] Using an OR operator in a Condition

2007-06-28 Thread Rob Hamflett
I'm not sure if it will help, but try OR instead of Or. There might be a case-sensitivity issue. Rob Jason J. W. Williams wrote: > Hello, > > I've got what must be a stupid question, but I can't find a suitable > answer. I only want a component to be installed if a registry entry is > X or Y.