[WiX-users] Upgrading from Wix 3.5 to 3.8 and Visual Studio 2013

2014-07-28 Thread Chetan Dabade
Hi all,

I am working on task which includes upgrading Visual Studio 2010 to 2013 as
well as upgrading WiX 3.5 to WiX 3.8. I have the basic knowledge of WiX and
i am not the expertise as such.

Conversion of .NET projects were successful, however in case of WiX
projects conversion from 3.5 to 3.8 i  have outlined the following steps:

1. Locally install WiX 3.8
2. Get latest source code from Source Control.
3. Open the solution file in Visual Studio 2013.
4. Right click on .Wixproj file and click upgrade.

Now all the projects are upgraded to latest version of .Net 4.5/4.5.1. When
i tried to build the solution i am getting the following error for all wix
projects (below mentioned is a sample error list for reference)

   Error 104 The specified task executable location C:\Program Files
(x86)\Windows Installer XML v3.5\bin\candle.exe is invalid. C:\Program
Files (x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066  Error 105 The
specified task executable location C:\Program Files (x86)\Windows
Installer XML v3.5\bin\candle.exe is invalid. C:\Program Files
(x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066  Error 106 The
specified task executable location C:\Program Files (x86)\Windows
Installer XML v3.5\bin\candle.exe is invalid. C:\Program Files
(x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066  Error 107 The
specified task executable location C:\Program Files (x86)\Windows
Installer XML v3.5\bin\candle.exe is invalid. C:\Program Files
(x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066  Error 108 The
specified task executable location C:\Program Files (x86)\Windows
Installer XML v3.5\bin\candle.exe is invalid. C:\Program Files
(x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066




Can anyone guide me on this on how to fix the build issues.

Please do the needful.


-- 
Thanks and Regards
Chetan V Dabade
+91 9663967000
--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Upgrading from Wix 3.5 to 3.8 and Visual Studio 2013

2014-07-28 Thread Chetan Dabade
Hi all,

I found the issue and fixed it. The issue was under each .wixproj file the
value of $(WixToolPath) was referring to older version of Wix (.i.e 3.5)

WixToolPath$(ProgramFiles)\Windows Installer Xml
v3.5\bin\/WixToolPath

I re-visited each individual projects unloaded it, edit the .wixproj file
and change the value to






WixToolPath$(ProgramFiles)\WiX Toolset v3.8\bin\/WixToolPath

By doing this all project are able to build, but at the end i am getting
the following strange issues





*Error 427 The Windows Installer XML variable 'WixUICostingPopupOptOut' is
declared in more than one location.  Please remove one of the declarations.
C:\src\wix38\src\ext\UIExtension\wixlib\Common.wxs 18 1 XInstall**Error*
*430* *The Windows Installer XML variable 'WixUICostingPopupOptOut' is
declared in more than one location.  Please remove one of the declarations.*
*C:\src\wix38\src\ext\UIExtension\wixlib\Common.wxs* *18* *1* *Installer*

i scanned my whole machine but couldn't find file *Common.wxs* and in
addition under Installer.wxs file there is a variable declared as:


*WixVariable Id=WixUICostingPopupOptOut Value=1 Overridable=yes /*
 while googling i found the above mentioned error

http://www.joyofsetup.com/2010/05/20/its-time-to-experiment/

and Bob has addressed on how to avoid the issue :

http://www.joyofsetup.com/2010/05/28/experimental-results-part-i/

http://www.joyofsetup.com/2010/10/09/experimental-results-part-ii/

The above mentioned bug has been addressed in Wix version 3.5/3.6, i have
installed Wix 3.8 (3.8.1128.0)

How do i address these issues ?? Please help

Thanks,
Chetan






On Mon, Jul 28, 2014 at 2:24 PM, Chetan Dabade chetandab...@gmail.com
wrote:

 Hi all,

 I am working on task which includes upgrading Visual Studio 2010 to 2013
 as well as upgrading WiX 3.5 to WiX 3.8. I have the basic knowledge of WiX
 and i am not the expertise as such.

 Conversion of .NET projects were successful, however in case of WiX
 projects conversion from 3.5 to 3.8 i  have outlined the following steps:

 1. Locally install WiX 3.8
 2. Get latest source code from Source Control.
 3. Open the solution file in Visual Studio 2013.
 4. Right click on .Wixproj file and click upgrade.

 Now all the projects are upgraded to latest version of .Net 4.5/4.5.1.
 When i tried to build the solution i am getting the following error for all
 wix projects (below mentioned is a sample error list for reference)

Error 104 The specified task executable location C:\Program Files
 (x86)\Windows Installer XML v3.5\bin\candle.exe is invalid. C:\Program
 Files (x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066  Error 105 The
 specified task executable location C:\Program Files (x86)\Windows
 Installer XML v3.5\bin\candle.exe is invalid. C:\Program Files
 (x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066  Error 106 The
 specified task executable location C:\Program Files (x86)\Windows
 Installer XML v3.5\bin\candle.exe is invalid. C:\Program Files
 (x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066  Error 107 The
 specified task executable location C:\Program Files (x86)\Windows
 Installer XML v3.5\bin\candle.exe is invalid. C:\Program Files
 (x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066  Error 108 The
 specified task executable location C:\Program Files (x86)\Windows
 Installer XML v3.5\bin\candle.exe is invalid. C:\Program Files
 (x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets 2066




 Can anyone guide me on this on how to fix the build issues.

 Please do the needful.


 --
 Thanks and Regards
 Chetan V Dabade
 +91 9663967000




-- 
Thanks and Regards
Chetan V Dabade
+91 9663967000
--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] The data for the icon WixUI_Ico_Info is not valid

2014-07-28 Thread Taylor, Duane E.
Hello,



I am getting the following error and I am having difficulty finding information 
about it.  Can anyone point me to where this error is described?

Thank-you.



DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid





--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

2014-07-28 Thread Hoover, Jacob
Are you customizing the image of a WiX UI?  Are you providing the icon in the 
expected format?  What OS is this error coming from (I seem to remember some 
WIC updates for XP...)

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org] 
Sent: Monday, July 28, 2014 11:45 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Hello,



I am getting the following error and I am having difficulty finding information 
about it.  Can anyone point me to where this error is described?

Thank-you.



DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid





--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

2014-07-28 Thread Taylor, Duane E.
I am creating a WiX installer and it is running on Windows Server 2008 r2.   I 
am customizing a WiX UI in order to present a series of variables to the user 
that the user can modify.  They are just text boxes.  I have a custom action 
that is initializing a database.  

As for logos, I am customizing the following three:
 WixVariable Id=WixUIBannerBmp 
Value=..\..\images\banner_custom_logo.bmp/
  WixVariable Id=WixUIDialogBmp 
Value=..\..\images\dialog_custom_logo.bmp/
  WixVariable Id=WixUIInfoIco 
Value=..\..\images\information_custom_logo.bmp/


This is a portion of the log file:
DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid
The installer has encountered an unexpected error installing this package. This 
may indicate a problem with this package. The error code is 2851. The arguments 
are: WixUI_Ico_Info, , 
Action 11:10:38: CancelDlg. Dialog created

Do I need to specify an icon for WixUIInfoIco?

Thank-you.

-Original Message-
From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com] 
Sent: Monday, July 28, 2014 1:03 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Are you customizing the image of a WiX UI?  Are you providing the icon in the 
expected format?  What OS is this error coming from (I seem to remember some 
WIC updates for XP...)

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org] 
Sent: Monday, July 28, 2014 11:45 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Hello,



I am getting the following error and I am having difficulty finding information 
about it.  Can anyone point me to where this error is described?

Thank-you.



DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid





--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

2014-07-28 Thread Hoover, Jacob
I believe the answer is a bitmap is not an icon...

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org] 
Sent: Monday, July 28, 2014 12:12 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

I am creating a WiX installer and it is running on Windows Server 2008 r2.   I 
am customizing a WiX UI in order to present a series of variables to the user 
that the user can modify.  They are just text boxes.  I have a custom action 
that is initializing a database.  

As for logos, I am customizing the following three:
 WixVariable Id=WixUIBannerBmp 
Value=..\..\images\banner_custom_logo.bmp/
  WixVariable Id=WixUIDialogBmp 
Value=..\..\images\dialog_custom_logo.bmp/
  WixVariable Id=WixUIInfoIco 
Value=..\..\images\information_custom_logo.bmp/


This is a portion of the log file:
DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid The 
installer has encountered an unexpected error installing this package. This may 
indicate a problem with this package. The error code is 2851. The arguments 
are: WixUI_Ico_Info, , Action 11:10:38: CancelDlg. Dialog created

Do I need to specify an icon for WixUIInfoIco?

Thank-you.

-Original Message-
From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com]
Sent: Monday, July 28, 2014 1:03 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Are you customizing the image of a WiX UI?  Are you providing the icon in the 
expected format?  What OS is this error coming from (I seem to remember some 
WIC updates for XP...)

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org]
Sent: Monday, July 28, 2014 11:45 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Hello,



I am getting the following error and I am having difficulty finding information 
about it.  Can anyone point me to where this error is described?

Thank-you.



DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid





--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid [P]

2014-07-28 Thread Steven Ogilvie
Classification: Public
I believe your ICON file must be a .ICO check the WIX documentation...

steve

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org]
Sent: July-28-14 1:12 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

I am creating a WiX installer and it is running on Windows Server 2008 r2.   I 
am customizing a WiX UI in order to present a series of variables to the user 
that the user can modify.  They are just text boxes.  I have a custom action 
that is initializing a database.  

As for logos, I am customizing the following three:
 WixVariable Id=WixUIBannerBmp 
Value=..\..\images\banner_custom_logo.bmp/
  WixVariable Id=WixUIDialogBmp 
Value=..\..\images\dialog_custom_logo.bmp/
  WixVariable Id=WixUIInfoIco 
Value=..\..\images\information_custom_logo.bmp/


This is a portion of the log file:
DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid The 
installer has encountered an unexpected error installing this package. This may 
indicate a problem with this package. The error code is 2851. The arguments 
are: WixUI_Ico_Info, , Action 11:10:38: CancelDlg. Dialog created

Do I need to specify an icon for WixUIInfoIco?

Thank-you.

-Original Message-
From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com]
Sent: Monday, July 28, 2014 1:03 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Are you customizing the image of a WiX UI?  Are you providing the icon in the 
expected format?  What OS is this error coming from (I seem to remember some 
WIC updates for XP...)

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org]
Sent: Monday, July 28, 2014 11:45 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Hello,



I am getting the following error and I am having difficulty finding information 
about it.  Can anyone point me to where this error is described?

Thank-you.



DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid





--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 
This message has been marked as Public by Steven Ogilvie on July-28-14 1:32:03 
PM.

The above classification labels were added to the message by TITUS Message 
Classification. 
For more information visit www.titus.com.

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid [P]

2014-07-28 Thread Steven Ogilvie
Classification: Public
From the documentation:
Replacing the default bitmaps
The WixUI dialog library includes default bitmaps for the background of the 
welcome and completion dialogs and the top banner of the other dialogs. You can 
replace those bitmaps with your own for product branding purposes. To replace 
default bitmaps, specify WiX variable values with the file names of your 
bitmaps, just like when replacing the default license text.

Variable name   Description Dimensions
WixUIBannerBmp  Top banner  493 × 58
WixUIDialogBmp  Background bitmap used on the welcome and completion dialogs
493 × 312
WixUIExclamationIco Exclamation icon on the WaitForCostingDlg   32 × 32
WixUIInfoIcoInformation icon on the cancel and error dialogs32 × 32
WixUINewIco Button glyph on the BrowseDlg   16 × 16
WixUIUpIco  Button glyph on the BrowseDlg   16 × 16



-Original Message-
From: Steven Ogilvie
Sent: July-28-14 1:32 PM
To: wix-users@lists.sourceforge.net
Subject: RE: The data for the icon WixUI_Ico_Info is not valid [P]

Classification: Public
I believe your ICON file must be a .ICO check the WIX documentation...

steve

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org]
Sent: July-28-14 1:12 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

I am creating a WiX installer and it is running on Windows Server 2008 r2.   I 
am customizing a WiX UI in order to present a series of variables to the user 
that the user can modify.  They are just text boxes.  I have a custom action 
that is initializing a database.  

As for logos, I am customizing the following three:
 WixVariable Id=WixUIBannerBmp 
Value=..\..\images\banner_custom_logo.bmp/
  WixVariable Id=WixUIDialogBmp 
Value=..\..\images\dialog_custom_logo.bmp/
  WixVariable Id=WixUIInfoIco 
Value=..\..\images\information_custom_logo.bmp/


This is a portion of the log file:
DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid The 
installer has encountered an unexpected error installing this package. This may 
indicate a problem with this package. The error code is 2851. The arguments 
are: WixUI_Ico_Info, , Action 11:10:38: CancelDlg. Dialog created

Do I need to specify an icon for WixUIInfoIco?

Thank-you.

-Original Message-
From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com]
Sent: Monday, July 28, 2014 1:03 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Are you customizing the image of a WiX UI?  Are you providing the icon in the 
expected format?  What OS is this error coming from (I seem to remember some 
WIC updates for XP...)

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org]
Sent: Monday, July 28, 2014 11:45 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Hello,



I am getting the following error and I am having difficulty finding information 
about it.  Can anyone point me to where this error is described?

Thank-you.



DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid





--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 
This message has been marked as Public by Steven Ogilvie on July-28-14 1:32:03 
PM.

The above classification labels were added to the message by TITUS Message 
Classification. For more information visit www.titus.com.

 
This message has been marked as Public by 

Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid [P]

2014-07-28 Thread Taylor, Duane E.
I copied the ..\src\ext\UIExtension\wixlib\Bitmaps\info.ico file to  my project 
directory and mapped WixUIInfoIco to that file.  

With that the error disappeared.  

  WixVariable Id=WixUIInfoIco Value=..\..\images\info.ico/

Thanks everyone.



-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com] 
Sent: Monday, July 28, 2014 1:38 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid [P]

Classification: Public
From the documentation:
Replacing the default bitmaps
The WixUI dialog library includes default bitmaps for the background of the 
welcome and completion dialogs and the top banner of the other dialogs. You can 
replace those bitmaps with your own for product branding purposes. To replace 
default bitmaps, specify WiX variable values with the file names of your 
bitmaps, just like when replacing the default license text.

Variable name   Description Dimensions
WixUIBannerBmp  Top banner  493 × 58
WixUIDialogBmp  Background bitmap used on the welcome and completion dialogs
493 × 312
WixUIExclamationIco Exclamation icon on the WaitForCostingDlg   32 × 32
WixUIInfoIcoInformation icon on the cancel and error dialogs32 × 32
WixUINewIco Button glyph on the BrowseDlg   16 × 16
WixUIUpIco  Button glyph on the BrowseDlg   16 × 16



-Original Message-
From: Steven Ogilvie
Sent: July-28-14 1:32 PM
To: wix-users@lists.sourceforge.net
Subject: RE: The data for the icon WixUI_Ico_Info is not valid [P]

Classification: Public
I believe your ICON file must be a .ICO check the WIX documentation...

steve

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org]
Sent: July-28-14 1:12 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

I am creating a WiX installer and it is running on Windows Server 2008 r2.   I 
am customizing a WiX UI in order to present a series of variables to the user 
that the user can modify.  They are just text boxes.  I have a custom action 
that is initializing a database.  

As for logos, I am customizing the following three:
 WixVariable Id=WixUIBannerBmp 
Value=..\..\images\banner_custom_logo.bmp/
  WixVariable Id=WixUIDialogBmp 
Value=..\..\images\dialog_custom_logo.bmp/
  WixVariable Id=WixUIInfoIco 
Value=..\..\images\information_custom_logo.bmp/


This is a portion of the log file:
DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid The 
installer has encountered an unexpected error installing this package. This may 
indicate a problem with this package. The error code is 2851. The arguments 
are: WixUI_Ico_Info, , Action 11:10:38: CancelDlg. Dialog created

Do I need to specify an icon for WixUIInfoIco?

Thank-you.

-Original Message-
From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com]
Sent: Monday, July 28, 2014 1:03 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Are you customizing the image of a WiX UI?  Are you providing the icon in the 
expected format?  What OS is this error coming from (I seem to remember some 
WIC updates for XP...)

-Original Message-
From: Taylor, Duane E. [mailto:tay...@mitre.org]
Sent: Monday, July 28, 2014 11:45 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] The data for the icon WixUI_Ico_Info is not valid

Hello,



I am getting the following error and I am having difficulty finding information 
about it.  Can anyone point me to where this error is described?

Thank-you.



DEBUG: Error 2851:  The data for the icon WixUI_Ico_Info is not valid





--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.

[WiX-users] WIX environment variable missing from Windows 8.1

2014-07-28 Thread Nick Ramirez
After installing WiX 3.8 on Windows 8.1, I saw that the system environment
variable WIX, which is normally installed as part of the install (and still
is on Windows 7), isn't set. Has anyone noticed this?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WIX-environment-variable-missing-from-Windows-8-1-tp7596093.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Upgrading from Wix 3.5 to 3.8 and Visual Studio 2013

2014-07-28 Thread Bob Arnson
On 28-Jul-14 08:51, Chetan Dabade wrote:
 i scanned my whole machine but couldn't find file *Common.wxs* and in
 addition under Installer.wxs file there is a variable declared as:


 *WixVariable Id=WixUICostingPopupOptOut Value=1 Overridable=yes /*
   while googling i found the above mentioned error

 http://www.joyofsetup.com/2010/05/20/its-time-to-experiment/

 and Bob has addressed on how to avoid the issue :

 http://www.joyofsetup.com/2010/05/28/experimental-results-part-i/

 http://www.joyofsetup.com/2010/10/09/experimental-results-part-ii/

 The above mentioned bug has been addressed in Wix version 3.5/3.6, i have
 installed Wix 3.8 (3.8.1128.0)
As I said at 
http://www.joyofsetup.com/2010/10/09/experimental-results-part-ii/:

If you've built a customized dialog set, remove the 
WixUICostingPopupOptOut WiX variable definition from your dialog set 
fragment or you're likely to get an error message at link time:

The Windows Installer XML variable 'WixUICostingPopupOptOut' is
declared in more than one location.  Please remove one of the
declarations.

-- 
sig://boB
http://joyofsetup.com/

--
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users