Re: [WiX-users] Error code is 2858

2013-10-09 Thread Hoover, Jacob
2858: The data for the bitmap [2] is not valid.

I'd assume it's the older OS's which are having issues.  Odds are you are using 
something in the image (Alpha channel / transparency) or a format that that OS 
doesn't support. You could try a different format. From the MSI SDK, the Bitmap 
control displays a bitmap or JPEG static picture file.  I see no mention of 
GIF's.



-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com] 
Sent: Wednesday, October 09, 2013 11:20 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two GIF 
images in a UI.

I have attached them to this email.  Below is the dialog utilizing those files. 
 Some OSes show the images ok.  Others do not.  Any suggestions would be 
helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 Height=15 
Transparent=yes NoPrefix=yes Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) /
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 Height=40 
X=90 Y=90 Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 Height=50 
X=90 Y=160 Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Error code is 2858

2013-10-09 Thread Tunney, Stephen
I will attempt to convert to JPG.  

-Original Message-
From: Hoover, Jacob [mailto:jacob.hoo...@greenheck.com] 
Sent: October-09-13 12:32 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

2858: The data for the bitmap [2] is not valid.

I'd assume it's the older OS's which are having issues.  Odds are you are using 
something in the image (Alpha channel / transparency) or a format that that OS 
doesn't support. You could try a different format. From the MSI SDK, the Bitmap 
control displays a bitmap or JPEG static picture file.  I see no mention of 
GIF's.



-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: Wednesday, October 09, 2013 11:20 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two GIF 
images in a UI.

I have attached them to this email.  Below is the dialog utilizing those files. 
 Some OSes show the images ok.  Others do not.  Any suggestions would be 
helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 Height=15 
Transparent=yes NoPrefix=yes Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) /
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 Height=40 
X=90 Y=90 Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 Height=50 
X=90 Y=160 Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register  
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Error code is 2858

2013-10-09 Thread Steven Ogilvie
Is it an animated GIF?

If not why not use a BMP instead? I believe dialogs can only use BMP...

Steve

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com] 
Sent: October-09-13 12:20 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two GIF 
images in a UI.

I have attached them to this email.  Below is the dialog utilizing those files. 
 Some OSes show the images ok.  Others do not.  Any suggestions would be 
helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 Height=15 
Transparent=yes NoPrefix=yes Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) /
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 Height=40 
X=90 Y=90 Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 Height=50 
X=90 Y=160 Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Error code is 2858

2013-10-09 Thread Christopher Painter
Per 
http://msdn.microsoft.com/en-us/library/windows/desktop/aa367830(v=vs.85).as
px  GIF is only supported on Win 8 / Server 2012.  What OS are you seeing 
the error on?


 From: Tunney, Stephen stephen.tun...@nuance.com
Sent: Wednesday, October 09, 2013 11:26 AM
To: wix-users@lists.sourceforge.net wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two 
GIF images in a UI.

I have attached them to this email.  Below is the dialog utilizing those 
files.  Some OSes show the images ok.  Others do not.  Any suggestions 
would be helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) 
/
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 
Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 
Height=40 X=90 Y=90 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 
Height=50 X=90 Y=160 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most 
from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk_
__
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Error code is 2858

2013-10-09 Thread Tunney, Stephen
Error is seen on 2008R2.

-Original Message-
From: Christopher Painter [mailto:chr...@iswix.com] 
Sent: October-09-13 12:33 PM
To: General discussion for Windows Installer XML toolset.; 
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Error code is 2858

Per
http://msdn.microsoft.com/en-us/library/windows/desktop/aa367830(v=vs.85).as
px  GIF is only supported on Win 8 / Server 2012.  What OS are you seeing the 
error on?


 From: Tunney, Stephen stephen.tun...@nuance.com
Sent: Wednesday, October 09, 2013 11:26 AM
To: wix-users@lists.sourceforge.net wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two GIF 
images in a UI.

I have attached them to this email.  Below is the dialog utilizing those files. 
 Some OSes show the images ok.  Others do not.  Any suggestions would be 
helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) 
/
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 
Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 
Height=40 X=90 Y=90 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 
Height=50 X=90 Y=160 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register  
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk_
__
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register  
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk

Re: [WiX-users] Error code is 2858

2013-10-09 Thread Tunney, Stephen
Negative on the animation of the GIF.

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com] 
Sent: October-09-13 1:00 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Is it an animated GIF?

If not why not use a BMP instead? I believe dialogs can only use BMP...

Steve

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: October-09-13 12:20 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two GIF 
images in a UI.

I have attached them to this email.  Below is the dialog utilizing those files. 
 Some OSes show the images ok.  Others do not.  Any suggestions would be 
helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 Height=15 
Transparent=yes NoPrefix=yes Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) /
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 Height=40 
X=90 Y=90 Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 Height=50 
X=90 Y=160 Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register  
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Error code is 2858

2013-10-09 Thread Tunney, Stephen
JPG worked but now I get this crappy looking background around my image.  Isn't 
there a way to specify the a specific colour as transparent or do I have to 
have my background match the colour of the dialog box?

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com] 
Sent: October-09-13 1:57 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Negative on the animation of the GIF.

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: October-09-13 1:00 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Is it an animated GIF?

If not why not use a BMP instead? I believe dialogs can only use BMP...

Steve

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: October-09-13 12:20 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two GIF 
images in a UI.

I have attached them to this email.  Below is the dialog utilizing those files. 
 Some OSes show the images ok.  Others do not.  Any suggestions would be 
helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 Height=15 
Transparent=yes NoPrefix=yes Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) /
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 Height=40 
X=90 Y=90 Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 Height=50 
X=90 Y=160 Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register  
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register  
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
October Webinars: Code for Performance
Free Intel

Re: [WiX-users] Error code is 2858

2013-10-09 Thread Nicolás Alvarez
JPEG doesn't support transparency. Also, it's designed for
photograph-like pictures, so you'll likely get artifacts on things
like logos.

BMP can have transparency, but I don't know if MSI supports that
(before Windows 8 / Server 2012).

-- 
Nicolás

2013/10/9 Tunney, Stephen stephen.tun...@nuance.com:
 JPG worked but now I get this crappy looking background around my image.  
 Isn't there a way to specify the a specific colour as transparent or do I 
 have to have my background match the colour of the dialog box?

 -Original Message-
 From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
 Sent: October-09-13 1:57 PM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Error code is 2858

 Negative on the animation of the GIF.

 -Original Message-
 From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
 Sent: October-09-13 1:00 PM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Error code is 2858

 Is it an animated GIF?

 If not why not use a BMP instead? I believe dialogs can only use BMP...

 Steve

 -Original Message-
 From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
 Sent: October-09-13 12:20 PM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] Error code is 2858

 Hello everyone,

 I'm getting this error as a debug message when attempting to display two GIF 
 images in a UI.

 I have attached them to this email.  Below is the dialog utilizing those 
 files.  Some OSes show the images ok.  Others do not.  Any suggestions would 
 be helpful as I have Google'd and nothing is coming up yet:


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Error code is 2858

2013-10-09 Thread Christopher Painter
Windows Installer doesn't support transparency.  You'll have to just work 
at it until it looks nice.  Limits of native / internal UI and while it's 
not the best, I've managed to get some pretty nicely branded MSIs out of 
it.


 From: Tunney, Stephen stephen.tun...@nuance.com
Sent: Wednesday, October 09, 2013 1:35 PM
To: General discussion for Windows Installer XML toolset. 
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Error code is 2858

JPG worked but now I get this crappy looking background around my image.  
Isn't there a way to specify the a specific colour as transparent or do I 
have to have my background match the colour of the dialog box?

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com] 
Sent: October-09-13 1:57 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Negative on the animation of the GIF.

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: October-09-13 1:00 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Is it an animated GIF?

If not why not use a BMP instead? I believe dialogs can only use BMP...

Steve

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: October-09-13 12:20 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two 
GIF images in a UI.

I have attached them to this email.  Below is the dialog utilizing those 
files.  Some OSes show the images ok.  Others do not.  Any suggestions 
would be helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) 
/
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 
Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 
Height=40 X=90 Y=90 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 
Height=50 X=90 Y=160 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most 
from the latest Intel processors and coprocessors. See abstracts and 
register  
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk


___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips

Re: [WiX-users] Error code is 2858

2013-10-09 Thread Hoover, Jacob
Or ditch the MSI UI and write a BA/MBA and be able to do whatever you want.

-Original Message-
From: Christopher Painter [mailto:chr...@iswix.com] 
Sent: Wednesday, October 09, 2013 2:03 PM
To: General discussion for Windows Installer XML toolset.; General discussion 
for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Windows Installer doesn't support transparency.  You'll have to just work at it 
until it looks nice.  Limits of native / internal UI and while it's not the 
best, I've managed to get some pretty nicely branded MSIs out of it.


 From: Tunney, Stephen stephen.tun...@nuance.com
Sent: Wednesday, October 09, 2013 1:35 PM
To: General discussion for Windows Installer XML toolset. 
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Error code is 2858

JPG worked but now I get this crappy looking background around my image.  
Isn't there a way to specify the a specific colour as transparent or do I have 
to have my background match the colour of the dialog box?

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: October-09-13 1:57 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Negative on the animation of the GIF.

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: October-09-13 1:00 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Is it an animated GIF?

If not why not use a BMP instead? I believe dialogs can only use BMP...

Steve

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: October-09-13 12:20 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two GIF 
images in a UI.

I have attached them to this email.  Below is the dialog utilizing those files. 
 Some OSes show the images ok.  Others do not.  Any suggestions would be 
helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) 
/
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 
Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 
Height=40 X=90 Y=90 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 
Height=50 X=90 Y=160 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register  
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk

Re: [WiX-users] Error code is 2858

2013-10-09 Thread Tunney, Stephen
How did you it to look nice?  I can't reliably change the background to be the 
standard grey of the windows dialog box since that is a subjective colour 
option changeable by the user.

-Original Message-
From: Christopher Painter [mailto:chr...@iswix.com] 
Sent: October-09-13 3:03 PM
To: General discussion for Windows Installer XML toolset.; General discussion 
for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Windows Installer doesn't support transparency.  You'll have to just work at it 
until it looks nice.  Limits of native / internal UI and while it's not the 
best, I've managed to get some pretty nicely branded MSIs out of it.


 From: Tunney, Stephen stephen.tun...@nuance.com
Sent: Wednesday, October 09, 2013 1:35 PM
To: General discussion for Windows Installer XML toolset. 
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Error code is 2858

JPG worked but now I get this crappy looking background around my image.  
Isn't there a way to specify the a specific colour as transparent or do I have 
to have my background match the colour of the dialog box?

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: October-09-13 1:57 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Negative on the animation of the GIF.

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: October-09-13 1:00 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Is it an animated GIF?

If not why not use a BMP instead? I believe dialogs can only use BMP...

Steve

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: October-09-13 12:20 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two GIF 
images in a UI.

I have attached them to this email.  Below is the dialog utilizing those files. 
 Some OSes show the images ok.  Others do not.  Any suggestions would be 
helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) 
/
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 
X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 
Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton
Text=!(loc.EQ_FirewallQuestionDlg_DisabledRadioButtonText) Height=17 
Value=0 Width=200 X=0 Y=70 /
  /RadioButtonGroup
/Control
Control Type=Text Id=EnabledDescription Width=260 
Height=40 X=90 Y=90 
Text=!(loc.EQ_FirewallQuestionDlg_EnabledDescription_Text) /
Control Type=Text Id=DisabledDescription Width=260 
Height=50 X=90 Y=160 
Text=!(loc.EQ_FirewallQuestionDlg_DisabledDescription_Text) /
  /Dialog
/UI
  /Fragment
/Wix


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts

Re: [WiX-users] Error code is 2858

2013-10-09 Thread Christopher Painter


If you are Microsoft creating Office, Visual Studio, SQL or a gaming 
company making the next FPS  that makes perfect sense.   For the rest of us 
line of business apps it's a complete waste of time and money.

Almost all of my day job installs get executed /QN via SCCM and only 1 in 
20 need any kind of UI customizations in the first place.   For my side 
job  I've managed to make all my customers happy with native MSI UI.  
  I do like the XML driven BA that I've seen in WiX and one day it'll be 
cost effective to do cool things with it.


 From: Hoover, Jacob jacob.hoo...@greenheck.com
Sent: Wednesday, October 09, 2013 2:49 PM
To: chr...@iswix.com chr...@iswix.com, General discussion for Windows 
Installer XML toolset. wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Error code is 2858

Or ditch the MSI UI and write a BA/MBA and be able to do whatever you 
want.

-Original Message-
From: Christopher Painter [mailto:chr...@iswix.com] 
Sent: Wednesday, October 09, 2013 2:03 PM
To: General discussion for Windows Installer XML toolset.; General 
discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Windows Installer doesn't support transparency.  You'll have to just work 
at it until it looks nice.  Limits of native / internal UI and while it's 
not the best, I've managed to get some pretty nicely branded MSIs out of 
it.


 From: Tunney, Stephen stephen.tun...@nuance.com
Sent: Wednesday, October 09, 2013 1:35 PM
To: General discussion for Windows Installer XML toolset. 
wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Error code is 2858

JPG worked but now I get this crappy looking background around my image.  
Isn't there a way to specify the a specific colour as transparent or do I 
have to have my background match the colour of the dialog box?

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: October-09-13 1:57 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Negative on the animation of the GIF.

-Original Message-
From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
Sent: October-09-13 1:00 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Error code is 2858

Is it an animated GIF?

If not why not use a BMP instead? I believe dialogs can only use BMP...

Steve

-Original Message-
From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
Sent: October-09-13 12:20 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error code is 2858

Hello everyone,

I'm getting this error as a debug message when attempting to display two 
GIF images in a UI.

I have attached them to this email.  Below is the dialog utilizing those 
files.  Some OSes show the images ok.  Others do not.  Any suggestions 
would be helpful as I have Google'd and nothing is coming up yet:

?xml version=1.0 encoding=utf-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Fragment
Binary Id=FirewallEnabledBmp 
SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
Binary Id=FirewallDisabledBmp 
SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

UI
  PropertyRef Id=SET_FIREWALL_RULES/
  Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
Control Id=Back Type=PushButton X=180 Y=243 Width=56 
Height=17 Text=!(loc.WixUIBack) /
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17 Default=yes Text=!(loc.WixUINext) /
Control Id=Cancel Type=PushButton X=304 Y=243 Width=56 
Height=17 Cancel=yes Text=!(loc.WixUICancel)
  Publish Event=SpawnDialog Value=CancelDlg1/Publish
/Control
Control Id=Description Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
Control Id=Title Type=Text X=15 Y=6 Width=200 
Height=15 Transparent=yes NoPrefix=yes 
Text=!(loc.EQ_FirewallQuestionDlg_Title) /
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap) 

/
Control Id=BannerLine Type=Line X=0 Y=44 Width=370 
Height=0 /
Control Id=BottomLine Type=Line X=0 Y=234 Width=370 
Height=0 /
Control Type=Bitmap Id=EnableFirewall Width=48 Height=48 
X=15 Y=65 Text=FirewallEnabledBmp /
Control Type=Bitmap Id=DisableFirewall Width=48 Height=48 

X=15 Y=136 Text=FirewallDisabledBmp /
Control Type=RadioButtonGroup Property=SET_FIREWALL_RULES 
Id=FirewallSelectionRadioButtonGroup Width=290 Height=100 X=70 
Y=65
  RadioButtonGroup Property=SET_FIREWALL_RULES
RadioButton
Text=!(loc.EQ_FirewallQuestionDlg_EnabledRadioButtonText) Height=17 
Value=1 Width=200 X=0 Y=0 /
RadioButton
Text

Re: [WiX-users] Error code is 2858

2013-10-09 Thread Rob Mensching
I would add that there are some other really good reasons to use a Bundle
to ship packaged software that is not as big as Office, VS or games that
have nothing to do with prettier UI. However, those apps are different from
the type of thing Christopher is describing where the applications sole
purpose are to be deployed invisibly and widely through SCCM (where naked
MSI may even be preferable).


On Wed, Oct 9, 2013 at 1:30 PM, Christopher Painter chr...@iswix.comwrote:



 If you are Microsoft creating Office, Visual Studio, SQL or a gaming
 company making the next FPS  that makes perfect sense.   For the rest of us
 line of business apps it's a complete waste of time and money.

 Almost all of my day job installs get executed /QN via SCCM and only 1 in
 20 need any kind of UI customizations in the first place.   For my side
 job  I've managed to make all my customers happy with native MSI UI.
   I do like the XML driven BA that I've seen in WiX and one day it'll be
 cost effective to do cool things with it.

 
  From: Hoover, Jacob jacob.hoo...@greenheck.com
 Sent: Wednesday, October 09, 2013 2:49 PM
 To: chr...@iswix.com chr...@iswix.com, General discussion for Windows
 Installer XML toolset. wix-users@lists.sourceforge.net
 Subject: RE: [WiX-users] Error code is 2858

 Or ditch the MSI UI and write a BA/MBA and be able to do whatever you
 want.

 -Original Message-
 From: Christopher Painter [mailto:chr...@iswix.com]
 Sent: Wednesday, October 09, 2013 2:03 PM
 To: General discussion for Windows Installer XML toolset.; General
 discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Error code is 2858

 Windows Installer doesn't support transparency.  You'll have to just work
 at it until it looks nice.  Limits of native / internal UI and while it's
 not the best, I've managed to get some pretty nicely branded MSIs out of
 it.

 
  From: Tunney, Stephen stephen.tun...@nuance.com
 Sent: Wednesday, October 09, 2013 1:35 PM
 To: General discussion for Windows Installer XML toolset.
 wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] Error code is 2858

 JPG worked but now I get this crappy looking background around my image.
 Isn't there a way to specify the a specific colour as transparent or do I
 have to have my background match the colour of the dialog box?

 -Original Message-
 From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
 Sent: October-09-13 1:57 PM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Error code is 2858

 Negative on the animation of the GIF.

 -Original Message-
 From: Steven Ogilvie [mailto:steven.ogil...@titus.com]
 Sent: October-09-13 1:00 PM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Error code is 2858

 Is it an animated GIF?

 If not why not use a BMP instead? I believe dialogs can only use BMP...

 Steve

 -Original Message-
 From: Tunney, Stephen [mailto:stephen.tun...@nuance.com]
 Sent: October-09-13 12:20 PM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] Error code is 2858

 Hello everyone,

 I'm getting this error as a debug message when attempting to display two
 GIF images in a UI.

 I have attached them to this email.  Below is the dialog utilizing those
 files.  Some OSes show the images ok.  Others do not.  Any suggestions
 would be helpful as I have Google'd and nothing is coming up yet:

 ?xml version=1.0 encoding=utf-8?
 Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
   Fragment
 Binary Id=FirewallEnabledBmp
 SourceFile=$(var.SolutionDir)Enabled-transparent.gif /
 Binary Id=FirewallDisabledBmp
 SourceFile=$(var.SolutionDir)Disabled-transparent.gif /

 Property Id=SET_FIREWALL_RULES Value=0 Admin=yes Secure=yes/

 UI
   PropertyRef Id=SET_FIREWALL_RULES/
   Dialog Id=EQ_FirewallQuestionDlg Width=370 Height=270
 Control Id=Back Type=PushButton X=180 Y=243 Width=56
 Height=17 Text=!(loc.WixUIBack) /
 Control Id=Next Type=PushButton X=236 Y=243 Width=56
 Height=17 Default=yes Text=!(loc.WixUINext) /
 Control Id=Cancel Type=PushButton X=304 Y=243 Width=56
 Height=17 Cancel=yes Text=!(loc.WixUICancel)
   Publish Event=SpawnDialog Value=CancelDlg1/Publish
 /Control
 Control Id=Description Type=Text X=25 Y=23 Width=280
 Height=15 Transparent=yes NoPrefix=yes
 Text=!(loc.EQ_FirewallQuestionDlg_SubTitle) /
 Control Id=Title Type=Text X=15 Y=6 Width=200
 Height=15 Transparent=yes NoPrefix=yes
 Text=!(loc.EQ_FirewallQuestionDlg_Title) /
 Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370
 Height=44 TabSkip=no Text=!(loc.EQ_FirewallQuestionDlg_BannerBitmap)

 /
 Control Id=BannerLine Type=Line X=0 Y=44 Width=370
 Height=0 /
 Control Id=BottomLine Type=Line X=0 Y=234 Width=370
 Height=0 /
 Control Type=Bitmap Id=EnableFirewall