Re: [WiX-users] Refresh on next button

2007-01-18 Thread Patrick Steele
If the masked edit is moved to the bottom of the screen, the radio buttons will still disappear. I have just decided I am going to separate this one dialog into two dialogs. This is not the answer I would wish for, but at least it would be correct. Patrick

[WiX-users] Strange behaviour of ARP Icon...

2007-01-18 Thread Peter G. Sakhno
Hello everybody. Why in ARP my product have an icon of the only EXE-file included in the product MSI-package instead of a standart MSI icon? This EXE-file is put in a separate component and when I comment this component in WXS my product have the desired standard MSI icon in ARP. -- Best

[WiX-users] Please update examples

2007-01-18 Thread TestTrack EacTeam
Would someone be kind enough to update the examples embedded in the Wix3 package? They compile/link with warnings or even errors. I’m also looking for up-to-date basic UI examples and a Wix3 tutorial. Thanks for your

Re: [WiX-users] OK Why does this not work

2007-01-18 Thread Joe O'Sullivan
Thanks Tony, can anyone tell me what I need to do next, seems like I am having one of them weeks which ensures nothing goes to plan. I have included the code so maybe someone can say where next, even to the point of what I have over looked. Thanks Joe -Original Message- From: [EMAIL

[WiX-users] Any examples on how to do NGen?

2007-01-18 Thread Dan Hoeger
I would like to include Ngen in our install. It sounds like I can use NetFX but I cannot find this in the documentation and did not see any examples anywhere. Anyone have an example they would care to share? Thanks, Dan

Re: [WiX-users] Any examples on how to do NGen?

2007-01-18 Thread Rob MacFadyen
Dan, There's a couple of examples on wixwiki (v3): http://www.wixwiki.com/index.php?title=NetFxExtension Regards, Rob _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Hoeger Sent: Thursday, January 18, 2007 9:59 AM To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] Strange behaviour of ARP Icon...

2007-01-18 Thread Bob Arnson
Peter G. Sakhno wrote: Why in ARP my product have an icon of the only EXE-file included in the product MSI-package instead of a standart MSI icon? If you don't specify ARPPRODUCTICON, ARP tries to guess which icon it should display. See Raymond Chen's blog

Re: [WiX-users] FW: Help regarding Wix needed

2007-01-18 Thread Bob Arnson
Joydeep Bhattacharyya wrote: No I am supplying certificate paths as parameter to msi at runtime. The build is independent of the path. Wix might build tables at build time, but my guess is it populates the paths based on the parameter. For my case the parameter is defined in the courier

[WiX-users] Browse button in WixUI_FeatureTree

2007-01-18 Thread Antony Walmsley
Is the browse button meant to work using WixUI_FeatureTree? I've got the following : Directory Id=TARGETDIR Name=SourceDir Directory Id=ProgramFilesFolder Directory Id=InstallRoot Name=Acme Directory Id=CMROOT Name=CM .. /Directory

Re: [WiX-users] Strange behaviour of ARP Icon...

2007-01-18 Thread Peter G. Sakhno
Ahh! I see... Is there any way to force ARP to use default MSI icon for my product? How to specify ARPPRODUCTICON in that manner? Best regards, Peter G. Sakhno C-MAP RUSSIA Ltd http://www.c-map.ru/ Bob Arnson wrote: Peter G. Sakhno wrote: Why in ARP my product have an icon of the only

[WiX-users] xmlfile and namespaces

2007-01-18 Thread Shaun Wilde
I am trying to use xmlfile on an file with namespaces I would therefore construct my query to look like this ElementPath=//*[\[]local-name()='deployment'[\]]/*[\[]local-name()='deploymentProvider'[\]]/@codebase but I get the following error ExecXmlFile: Error 0x80004005: failed to find

[WiX-users] Slightly OT: votive and ankh?

2007-01-18 Thread Simon Dahlbacka
This is slightly off-topic, but I cannot seem to get AnkhSvn (subversion provider for Visual studio) to play along nicely with a votive project. Now, I don't know if this is due to Votive or Ankh? (latest v3 WiX and latest Ankh) If anyone has had any success in combining these two, I'd

Re: [WiX-users] OK Why does this not work

2007-01-18 Thread Joe O'Sullivan
Thanks Tony. Can anybody enlighten me on how to complete this? I want to install the file then run this file with a custom action? What have I missed, it seemed just as I had read but not so? Thanks Joe Code as supplied in issue 113

Re: [WiX-users] WiX and PocketPC installations

2007-01-18 Thread Mike Dimmick
You can't use WiX. Windows Mobile uses CABs which are built with CabWiz.exe, not MSIs. You write an .inf file to tell CabWiz.exe what to do. If building only for Windows Mobile 5.0, you can use a compressed CAB and should build it with the version of CabWiz from VS2005 (typically in C:\Program

[WiX-users] package ASP.NET application

2007-01-18 Thread Ogurok, Oleg
Hi there, I am migrating from the bult-in VS2005 web deployment project to WiX. Could someone please provide a simple example of creating an MSI package which will create a virtual directory in IIS and install all output files (e.g. *.aspx, *.js) from a Visual Studio 2005 Web Deployment

[WiX-users] CCTV camera

2007-01-18 Thread BEYOND
Dear Sir or Madam, We are Shenzhen Beyond Company. a professional high-tech manufacturer of CCD camera in China. Our products include the follows: -- -- --Miniature Camera -- -- --Underwater Camera -- -- --Bullet Camera -- -- --Dome Camera -- -- -- Weatherproof IR LED

[WiX-users] Platforms attribute of Package element...

2007-01-18 Thread Ravikumar Gopinath
Hi, I need to set the Platforms attribute of Package element to either 64-bit or default(platform independent) during build. Is Intel the default value for Platforms attribute? Thanks Ravi- Take Surveys. Earn Cash.

[WiX-users] Questions about sharing folder

2007-01-18 Thread Andy Chen
Hi, Can I use FileShare element to share a folder which is not created by my MSI file? If yes, could anybody give me an example? Thanks in advance! Andy - Take Surveys. Earn Cash. Influence the Future of IT Join

Re: [WiX-users] package ASP.NET application

2007-01-18 Thread Dhaval Patel
See the example here: http://www.tramontana.co.hu/wix/lesson6.php#6.3 Basically, the Directory element would contain all your *.aspx, *.js, etc files. One thing the example doesn't mention is nested directories (example, you may have an App_Code, App_Themes, etc) directories - if you are using

Re: [WiX-users] Platforms attribute of Package element...

2007-01-18 Thread Bob Arnson
Ravikumar Gopinath wrote: I need to set the Platforms attribute of Package element to either 64-bit or default(platform independent) during build. Is Intel the default value for Platforms attribute? Intel (x86) is the default. There isn't a platform-independent setting. See Template Summary