Re: [WiX-users] Edit control & default button

2009-11-05 Thread Dan Giambalvo
for Windows Installer XML toolset. Subject: Re: [WiX-users] Edit control & default button Dan Giambalvo wrote: > I'm running into a strange issue with an interaction between an Edit control > and a default button with a custom action on a WiX Dialog. The Edit is tied > to an MSI

[WiX-users] Edit control & default button

2009-11-03 Thread Dan Giambalvo
I'm running into a strange issue with an interaction between an Edit control and a default button with a custom action on a WiX Dialog. The Edit is tied to an MSI property, and the button's custom action does some processing to validate the value of that property. I'm finding when I make the

[WiX-users] InstallExecuteSequence modifying Dialogs

2009-10-30 Thread Dan Giambalvo
During our InstallExecuteSequence we decrement an install count for the user via a Custom Action. After that takes place, we want to change the messaging of our Windows Installer UI (Cancel dialog, UserExit dialog, etc) to alert the user to this fact (as it is non-reversable.) I'm having troub

[WiX-users] Understanding how Back and Next buttons work

2009-10-26 Thread Dan Giambalvo
I'm trying to wrap my head around exactly how Back/Next buttons work, and the right way to wire them together. In my installer UI, I have two dialogs: WelcomeEula Dialog and Keycode Dialog. I declare them both in my InstallUISequence as follows: NOT Installed NOT Installed Simply by do

Re: [WiX-users] Using a CustomAction to modify a dialog

2009-10-24 Thread Dan Giambalvo
CustomAction to modify a dialog In article <5e7723298293ea4b8c5fac913740a9cc212a7...@tk5ex14mbxw652.wingroup.windeploy.ntdev.microsoft.com>, Dan Giambalvo writes: > The problem I'm running into is that I can't seem to get Windows > Installer t o re-evaluate any prope

Re: [WiX-users] Using a CustomAction to modify a dialog

2009-10-24 Thread Dan Giambalvo
: Re: [WiX-users] Using a CustomAction to modify a dialog In article <5e7723298293ea4b8c5fac913740a9cc212aa...@tk5ex14mbxw652.wingroup.windeploy.ntdev.microsoft.com>, Dan Giambalvo writes: > The one thing I can't do (and didn't mention below) is actually > changing th

Re: [WiX-users] Blocking install if property isn't set

2009-10-23 Thread Dan Giambalvo
ntly your UI never runs anyway. The commandline is how they would pass what they would have typed into the UI. -----Original Message- From: Dan Giambalvo [mailto:danie...@microsoft.com] Sent: Friday, October 23, 2009 5:32 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-

Re: [WiX-users] Blocking install if property isn't set

2009-10-23 Thread Dan Giambalvo
both sequences on "NOT Installed" so it doesn't block uninstalls/upgrades/repairs/etc. -Original Message- From: Dan Giambalvo [mailto:danie...@microsoft.com] Sent: Friday, October 23, 2009 12:37 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Blocking install if prop

Re: [WiX-users] Using a CustomAction to modify a dialog

2009-10-23 Thread Dan Giambalvo
markup looks like to implement it. I know it isn't just like what you are looking for, but we have said before that the internal UI is quite limited. There are a whole other set of limitations on the external and embedded UIs, but we don't live in a perfect world, apparently. -Ori

[WiX-users] Blocking install if property isn't set

2009-10-23 Thread Dan Giambalvo
Our installer has some UI which requests and validates a product key from the user during InstallUISequence. I want to add an additional checks so that if some clever user tries to silently install our msi to bypass the UI (and hence the validation UI) that they install will fail. I have a pri

Re: [WiX-users] Questions on more advanced WiX Installer UI

2009-10-23 Thread Dan Giambalvo
program. The end result is a simpler installation that's much easier to manage, requiring an internet connection during install can lead to a number of problems so by separating it out the user doesn't get as confused about why things might be failing. Sascha On Thu, Oct 22, 2009 at 4:53 AM

Re: [WiX-users] Using a CustomAction to modify a dialog

2009-10-22 Thread Dan Giambalvo
s to the actiondata event, could your custom action send an actiondata event to it? Let us know how that works. -Original Message- From: Dan Giambalvo [mailto:danie...@microsoft.com] Sent: Thursday, October 22, 2009 2:56 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Using a

[WiX-users] Using a CustomAction to modify a dialog

2009-10-22 Thread Dan Giambalvo
I'm trying to use a CustomAction to do some evaluation, and modify an on-screen Windows Installer dialog. The scenario is this: 1) User enters some text in an edit control 2) User clicks a button which invokes a custom action to evaluate the entered text 3) Custom action comple

Re: [WiX-users] Questions on more advanced WiX Installer UI

2009-10-22 Thread Dan Giambalvo
Quite right, the spinner is required during a part of the InstallUI sequence. In considering the spinner problem, I was actually wondering if I couldn't do something super hacky like creating 16 or so bitmaps, and then in my CustomAction flipping them hidden and not in succession to create a fl

[WiX-users] Questions on more advanced WiX Installer UI

2009-10-21 Thread Dan Giambalvo
I'm working on some enhancements to our WiX based setup UI, and wanted to know if a few things are possible using the UI components Windows Installer makes available: 1) We have a custom action as a part of our installer that makes a web service call. We'd like to embed in the UI a spinne

[WiX-users] Adding to the FilesInUse Dialog

2009-02-25 Thread Dan Giambalvo
I'm trying to figure out how to add to my installer's FilesInUse dialog. My Installer contains a custom action that requires a separate exe on the system not be running (firefox.exe.) Obviously I don't install firefox, and I don't touch it in any way obvious to the installer, so it doesn't kno

[WiX-users] Parsing a version string in WiX

2009-02-20 Thread Dan Giambalvo
I'm trying to add a Condition to my WiX based installer to make sure that IE8 is installed on the machine. I used a RegistrySearch to find the appropriate reg key with the currently installed version of IE. Unfortunately, it is in a 4-part form such as 8.0.6001.18372. I want to just grab the

[WiX-users] Auto-launching app & MsiRunningElevated

2008-07-25 Thread Dan Giambalvo
I'm trying to modify my WiX installer to have the following semantics: 1) If the user is not installing from an elevated prompt, then automatically launch my installed app at the end of install 2) If the user is running from an elevated prompt, then show the ExitDialog and skip the ap

Re: [WiX-users] Help customizing FilesInUse Dialog

2008-07-18 Thread Dan Giambalvo
the rest of the UI wxs and just go to town. Chris On Fri, Jul 18, 2008 at 4:42 PM, Dan Giambalvo < [EMAIL PROTECTED]> wrote: > I'm in need of some help trying to customize the FilesInUse dialog for my > app's installer. Our designers want to customize the look and feel o

Re: [WiX-users] Help customizing FilesInUse Dialog

2008-07-18 Thread Dan Giambalvo
2008 at 4:42 PM, Dan Giambalvo < [EMAIL PROTECTED]> wrote: > I'm in need of some help trying to customize the FilesInUse dialog for my > app's installer. Our designers want to customize the look and feel of the > entire installer, so starting with WIXUI_Minimal I've

[WiX-users] Help customizing FilesInUse Dialog

2008-07-18 Thread Dan Giambalvo
I'm in need of some help trying to customize the FilesInUse dialog for my app's installer. Our designers want to customize the look and feel of the entire installer, so starting with WIXUI_Minimal I've been making local copies of each dialog wxs file and then making modifications. This worked

[WiX-users] Launching custom action Impersonated, but non-elevated on Vista

2008-04-03 Thread Dan Giambalvo
I'm using Wix to build an installer for my Vista application. I want the user to be able to launch the application when the install completes (as is standard in many installers.) Because my application stores all it's data in %appdata% it has to run impersonated. However, my application speci