[WiX-users] Include External C++ UI in Wix MSI

2013-12-27 Thread ak m
Hello All, I want to include External C++ UI in between Wix MSI UI.. Any one please help me how to achieve this? External C++ UI contains LISTVIEW... Anil -- Rapidly troubleshoot problems before they affect your busines

Re: [WiX-users] [WIX]: ListView Control on WIX Custom UI

2013-12-27 Thread Blair Murri
I honestly don't know. Maybe there's a way to format the text of each line. Most of my projects for almost ten years now don't use MSI's UI. -Blair > Date: Fri, 27 Dec 2013 14:33:36 +0530 > From: dileep.sanamp...@gmail.com > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-users] [WIX]

[WiX-users] Reattach existing SQL Database on install

2013-12-27 Thread David Pilcher
Hi, Currently we're using SqlDatabase to create and setup the database: This works great on first install. It's important that the data is not lost on an uninstall, hence the drop being set to no. If the user does an uninstall/install, we get

Re: [WiX-users] ListView Creation

2013-12-27 Thread Bevan Weiss
I don't think what you want is achievable using *just* WiX authoring. You would need to use a custom UI handler for this, which is something that I don't have any experience with, and from what I do know about it is that it is quite a bit of work. Perhaps you need to ask yourself if it's really so

Re: [WiX-users] CustomActions - ComboBox by name?

2013-12-27 Thread Sullivan, Mark V
Oh, and (from an example), when I say.. Record newListBoxRecord = new Record(4); newListBoxRecord[1] = "WEBSITE"; newListBoxRecord[2] = order; newListBoxRecord[3] = webSite.Name;

Re: [WiX-users] CustomActions - ComboBox by name?

2013-12-27 Thread Christopher Painter
You can use a WHERE clause on the Property column to get just the rows related to a particular ComboBox. From: "Sullivan, Mark V" Sent: Friday, December 27, 2013 10:08 AM To: "wix-users@lists.sourceforge.net" Subject: [WiX-users] CustomActions - ComboBo

[WiX-users] CustomActions - ComboBox by name?

2013-12-27 Thread Sullivan, Mark V
All, I have multiple combo boxes in the MSI UI, and I want to just affect ONE of them in my custom action. Every example I see refers to "select * from ComboBox", etc.. Can you do this by name, so that not all ComboBoxes are affected? Mark V Sullivan Digital Development and Web Coordinator Tec

Re: [WiX-users] Strange problem with printer driver installation

2013-12-27 Thread Tunney, Stephen
Another might be the fact that you have a x64 and x86 version of the your driver being installed? -Original Message- From: Carter Young [mailto:ecyo...@grandecom.net] Sent: December-27-13 10:05 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Strange problem with printer d

[WiX-users] ManagedBootstrapperApplication - sans UI

2013-12-27 Thread Tunney, Stephen
Hey guys, I'm trying to use the managed bootstrapper and all I want the bootstrapper to is elevate privileges and have the MSI embedded in the EXE. What would be the fastest way to do this? So far I can't seem to get around having the .net prerequisite UI showing up for some reason. Stephen

Re: [WiX-users] Candle & pre-processor variables

2013-12-27 Thread John Cooper
If you're running outside of Visual Studio or MSBuild, the defines will NOT be generated for you automatically. You'll have to pass the defines manually to candle. Something like this: -dHelpSystem.Web.Configuration=Release -d"HelpSystem.Web.FullConfiguration=Release|AnyCPU" -dHelpSystem.Web.P

Re: [WiX-users] Strange problem with printer driver installation

2013-12-27 Thread Carter Young
Just an idea: Does V1 of your Driver have an uninstaller? If so build a bundle that will call the uninstaller before installing the new version. -- Rapidly troubleshoot problems before they affect your business. Most

Re: [WiX-users] Candle & pre-processor variables

2013-12-27 Thread Brian Enderle
I should have mentioned that I have that included and that the Product.wxs successfully builds when I use VS 2012 to build the MSI. I am now trying to automatically harvest and deploy a website along with the items in Product.wxs. It is when I use 'candle' with Product.wxs that I am getting the e

Re: [WiX-users] Candle & pre-processor variables

2013-12-27 Thread John Cooper
First and foremost, you need a project reference to "ApprovalClassLibrary" in the consuming wixproj in order for that macro to be defined. -- John Merryweather Cooper Build & Install Engineer - ESA Jack Henry & Associates, Inc.® Shawnee Mission, KS  66227 Office:  913-341-3434 x791011 jocoo...@ja

[WiX-users] Candle & pre-processor variables

2013-12-27 Thread Brian Enderle
I am following the example of installing a website found at http://blog.bartdemeyer.be/2013/10/create-an-installer-for-website-with-wix-part-1/. I am running into an issue when I try to use the following in the setup.build file used by msbuild: When I t

Re: [WiX-users] ListView Creation

2013-12-27 Thread ak m
Hi Bevan Weiss, Thank you for the information. My UI looks as in the link ListViewDlg.JPG Please help me to create this... On Thu, Dec 26, 2013 at 8:34 AM, Bevan Weiss wrote: > Instantiating the ListView

Re: [WiX-users] [WIX]: ListView Control on WIX Custom UI

2013-12-27 Thread Dileep S
Hi Blair, Thank you for the information. I have to display the Dialog UI dynamically as shown in below 'SampleDlg.jpg' file. SampleDlg.jpg Is it possible to display on UI using WIX controls (not BA)? If possible,