Re: [WiX-users] unsubscribe

2014-05-16 Thread Ben Metheny
The Project.app file is one feature in the msi, there is also an IIS
website and SQL database - all components of a SharePoint app. Some of the
data collected or passed in needs placed in web.config and the app.manifest
(xml) inside the zip. This file needs uploaded to a catalog somewhere so is
being placed in a data folder along with some scripts. I can write a C#
custom action to perform the modification but since it's using values I'll
remember and is an xml mod I was hoping I could stay out of writing a
managed custom action, I just need the ability to either modify an xml file
that's in a zip or compress some files into a zip after modifying one.
On May 15, 2014 4:17 PM, Ed Tenholder e...@tenholder.net wrote:

 On May 15, 2014 3:14 PM, Pavan Konduru pavan.kond...@accelrys.com wrote:
 It's usually best not to include zip files as the installer treats it as a
 single entity.
 When you blow up the contents of the zip file through custom actions, the
 installer cannot track those contents as part of upgrade/uninstall/patch.

 --Pavan

 -Original Message-
 From: John Cooper [mailto:jocoo...@jackhenry.com]
 Sent: Thursday, May 15, 2014 1:07 PM
 To: General discussion about the WiX toolset.
 Subject: Re: [WiX-users] Zip File Manipulation

 We use DotNetZip.  There's a NuGet package for it, and writing a C# CA
 from it to do what you want is pretty easy.

 --
 John Merryweather Cooper
 Build  Install Engineer - ESA
 Jack Henry  Associates, Inc.®
 Shawnee Mission, KS  66227
 Office:  913-341-3434 x791011
 jocoo...@jackhenry.com
 www.jackhenry.comhttp://www.jackhenry.com



 -Original Message-
 From: Ben Metheny [mailto:benmeth...@gmail.com]
 Sent: Thursday, May 15, 2014 1:38 PM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] Zip File Manipulation

 Are there any existing custom actions that can compress a directory or
 list of files into a zip? I need this because part of the install payload
 is an 'App Package', this is a '.app' file which is just a zip with
 alternate extension. I need to modify an XML file which is the 'manifest'
 for this 'App Package' then compress it and a few other files into a file
 which I can use to then install. I've got a managed custom action that will
 work but would prefer to stick an unmanaged action if available.

 --
 Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
 Instantly run your Selenium tests across 300+ browser/OS combos.
 Get unparalleled scalability from the best Selenium testing platform
 available Simple to use. Nothing to install. Get started now for free.
 http://p.sf.net/sfu/SauceLabs
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
 NOTICE: This electronic mail message and any files transmitted with it are
 intended exclusively for the individual or entity to which it is addressed.
 The message, together with any attachment, may contain confidential and/or
 privileged information.
 Any unauthorized review, use, printing, saving, copying, disclosure or
 distribution is strictly prohibited. If you have received this message in
 error, please immediately advise the sender by reply email and delete all
 copies.



 --
 Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
 Instantly run your Selenium tests across 300+ browser/OS combos.
 Get unparalleled scalability from the best Selenium testing platform
 available Simple to use. Nothing to install. Get started now for free.
 http://p.sf.net/sfu/SauceLabs
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




 --
 Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
 Instantly run your Selenium tests across 300+ browser/OS combos.
 Get unparalleled scalability from the best Selenium testing platform
 available
 Simple to use. Nothing to install. Get started now for free.
 http://p.sf.net/sfu/SauceLabs
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 --
 Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
 Instantly run your Selenium tests across 300+ browser/OS combos.
 Get unparalleled scalability from the best Selenium testing platform
 available
 Simple to use. Nothing to install. Get started now for free.
 http://p.sf.net/sfu/SauceLabs
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 

Re: [WiX-users] unsubscribe

2014-05-16 Thread b . rasing
Dit mailadres is niet meer in gebruik. Mail kan je voortaan sturen naar 
basti...@careercontrol.nl.



--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2014-05-15 Thread Ed Tenholder
On May 15, 2014 3:14 PM, Pavan Konduru pavan.kond...@accelrys.com wrote:
It's usually best not to include zip files as the installer treats it as a 
single entity.
When you blow up the contents of the zip file through custom actions, the 
installer cannot track those contents as part of upgrade/uninstall/patch.

--Pavan

-Original Message-
From: John Cooper [mailto:jocoo...@jackhenry.com]
Sent: Thursday, May 15, 2014 1:07 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] Zip File Manipulation

We use DotNetZip.  There's a NuGet package for it, and writing a C# CA from it 
to do what you want is pretty easy.

--
John Merryweather Cooper
Build  Install Engineer - ESA
Jack Henry  Associates, Inc.®
Shawnee Mission, KS  66227
Office:  913-341-3434 x791011
jocoo...@jackhenry.com
www.jackhenry.comhttp://www.jackhenry.com



-Original Message-
From: Ben Metheny [mailto:benmeth...@gmail.com]
Sent: Thursday, May 15, 2014 1:38 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Zip File Manipulation

Are there any existing custom actions that can compress a directory or list of 
files into a zip? I need this because part of the install payload is an 'App 
Package', this is a '.app' file which is just a zip with alternate extension. I 
need to modify an XML file which is the 'manifest' for this 'App Package' then 
compress it and a few other files into a file which I can use to then install. 
I've got a managed custom action that will work but would prefer to stick an 
unmanaged action if available.
--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE 
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available 
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
NOTICE: This electronic mail message and any files transmitted with it are 
intended exclusively for the individual or entity to which it is addressed. The 
message, together with any attachment, may contain confidential and/or 
privileged information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution is strictly prohibited. If you have received this message in 
error, please immediately advise the sender by reply email and delete all 
copies.


--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE 
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available 
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2014-05-15 Thread John Cooper
All true.  We assembly a Zip file for consumption as a plugin by one of our 
applications.  The files in the Zip file are explicitly NOT tracked.  They are 
only deployed into temporary folders which are purged on install or upgrade.

--
John Merryweather Cooper
Build  Install Engineer - ESA
Jack Henry  Associates, Inc.®
Shawnee Mission, KS  66227
Office:  913-341-3434 x791011
jocoo...@jackhenry.com
www.jackhenry.com



-Original Message-
From: Ed Tenholder [mailto:e...@tenholder.net] 
Sent: Thursday, May 15, 2014 3:15 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] unsubscribe

On May 15, 2014 3:14 PM, Pavan Konduru pavan.kond...@accelrys.com wrote:
It's usually best not to include zip files as the installer treats it as a 
single entity.
When you blow up the contents of the zip file through custom actions, the 
installer cannot track those contents as part of upgrade/uninstall/patch.

--Pavan

-Original Message-
From: John Cooper [mailto:jocoo...@jackhenry.com]
Sent: Thursday, May 15, 2014 1:07 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] Zip File Manipulation

We use DotNetZip.  There's a NuGet package for it, and writing a C# CA from it 
to do what you want is pretty easy.

--
John Merryweather Cooper
Build  Install Engineer - ESA
Jack Henry  Associates, Inc.®
Shawnee Mission, KS  66227
Office:  913-341-3434 x791011
jocoo...@jackhenry.com
www.jackhenry.comhttp://www.jackhenry.com



-Original Message-
From: Ben Metheny [mailto:benmeth...@gmail.com]
Sent: Thursday, May 15, 2014 1:38 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Zip File Manipulation

Are there any existing custom actions that can compress a directory or list of 
files into a zip? I need this because part of the install payload is an 'App 
Package', this is a '.app' file which is just a zip with alternate extension. I 
need to modify an XML file which is the 'manifest' for this 'App Package' then 
compress it and a few other files into a file which I can use to then install. 
I've got a managed custom action that will work but would prefer to stick an 
unmanaged action if available.
--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE 
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available 
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
NOTICE: This electronic mail message and any files transmitted with it are 
intended exclusively for the individual or entity to which it is addressed. The 
message, together with any attachment, may contain confidential and/or 
privileged information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution is strictly prohibited. If you have received this message in 
error, please immediately advise the sender by reply email and delete all 
copies.


--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE 
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available 
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE 
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available 
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE 
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available 
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed

Re: [WiX-users] Unsubscribe

2013-11-15 Thread Alain Forget
Unsubscribe yourself: https://lists.sourceforge.net/lists/listinfo/wix-users

-Original Message-
From: Chirayu Shishodiya [mailto:chirayu.shishod...@red-gate.com] 
Sent: Friday, November 15, 2013 08:21
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] Unsubscribe

Please unsubscribe this email off this list!

Thanks!

CHIRAYU SHISHODIYA
Software Engineer
Red Gatehttp://www.red-gate.com/

--
DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unsubscribe

2013-11-15 Thread Carter Young
Or if you prefer, change the mailing method to digests.

Quoting Alain Forget afor...@cmu.edu:

 Unsubscribe yourself: https://lists.sourceforge.net/lists/listinfo/wix-users

 -Original Message-
 From: Chirayu Shishodiya [mailto:chirayu.shishod...@red-gate.com]
 Sent: Friday, November 15, 2013 08:21
 To: WiX-users@lists.sourceforge.net
 Subject: [WiX-users] Unsubscribe

 Please unsubscribe this email off this list!

 Thanks!

 CHIRAYU SHISHODIYA
 Software Engineer
 Red Gatehttp://www.red-gate.com/

 --
 DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
 OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
 Free app hosting. Or install the open source package on any LAMP server.
 Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
 http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
 OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
 Free app hosting. Or install the open source package on any LAMP server.
 Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
 http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






--
DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unsubscribe

2013-11-15 Thread Alain Forget
I wonder if we can add to the mailing list sig a message as such, To 
unsubscribe, please go here 
https://lists.sourceforge.net/lists/listinfo/wix-users and enter your e-mail 
address at the bottom of the page.

Even if we could add such a message, I wonder if people would even see it 
rather than send out Unsubscribe requests like this.

-Original Message-
From: Carter Young [mailto:ecyo...@grandecom.net] 
Sent: Friday, November 15, 2013 09:52
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Unsubscribe

Or if you prefer, change the mailing method to digests.

Quoting Alain Forget afor...@cmu.edu:

 Unsubscribe yourself: https://lists.sourceforge.net/lists/listinfo/wix-users

 -Original Message-
 From: Chirayu Shishodiya [mailto:chirayu.shishod...@red-gate.com]
 Sent: Friday, November 15, 2013 08:21
 To: WiX-users@lists.sourceforge.net
 Subject: [WiX-users] Unsubscribe

 Please unsubscribe this email off this list!

 Thanks!

 CHIRAYU SHISHODIYA
 Software Engineer
 Red Gatehttp://www.red-gate.com/

 --
 DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
 OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
 Free app hosting. Or install the open source package on any LAMP server.
 Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
 http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
 OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
 Free app hosting. Or install the open source package on any LAMP server.
 Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
 http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






--
DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
DreamFactory - Open Source REST  JSON Services for HTML5  Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] UNSUBSCRIBE

2013-08-27 Thread Alain Forget
No.

Go here to unsubscribe yourself: 
https://lists.sourceforge.net/lists/listinfo/wix-users

-Original Message-
From: msanc...@specservices.com [mailto:msanc...@specservices.com] 
Sent: Tuesday, August 27, 2013 18:26
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] UNSUBSCRIBE




Mark Sanchez
Systems Developer
SPEC Services, Inc.
--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] UNSUBSCRIBE

2013-08-27 Thread msanchez
My company is blocking that site.

I didn't really need to unsubscribe but it seems as though I get an email for 
every entry added there.  It's as though I have been registered on a thread to 
receive replies, which I have never even posted anything.  How can this be 
turned off?


Mark Sanchez
Systems Developer
SPEC Services, Inc.


-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Tuesday, August 27, 2013 3:40 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] UNSUBSCRIBE

No.

Go here to unsubscribe yourself: 
https://lists.sourceforge.net/lists/listinfo/wix-users

-Original Message-
From: msanc...@specservices.com [mailto:msanc...@specservices.com]
Sent: Tuesday, August 27, 2013 18:26
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] UNSUBSCRIBE




Mark Sanchez
Systems Developer
SPEC Services, Inc.
--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] UNSUBSCRIBE

2013-08-27 Thread Alain Forget
Your company blocks sourceforge.net? Huh.

There, I've just unsubscribed you. You should receive a confirmation e-mail 
probably asking you to click a link to confirm that hopefully your company 
doesn't block. If your company does block it, well then unless you can make a 
rule to route WiX-users mail directly into your trash, then I guess you're 
screwed, and you'll just have to enjoy our WiX technobabble. :-P


-Original Message-
From: msanc...@specservices.com [mailto:msanc...@specservices.com] 
Sent: Tuesday, August 27, 2013 18:53
To: afor...@cmu.edu; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] UNSUBSCRIBE

My company is blocking that site.

I didn't really need to unsubscribe but it seems as though I get an email for 
every entry added there.  It's as though I have been registered on a thread to 
receive replies, which I have never even posted anything.  How can this be 
turned off?


Mark Sanchez
Systems Developer
SPEC Services, Inc.


-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
Sent: Tuesday, August 27, 2013 3:40 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] UNSUBSCRIBE

No.

Go here to unsubscribe yourself: 
https://lists.sourceforge.net/lists/listinfo/wix-users

-Original Message-
From: msanc...@specservices.com [mailto:msanc...@specservices.com]
Sent: Tuesday, August 27, 2013 18:26
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] UNSUBSCRIBE




Mark Sanchez
Systems Developer
SPEC Services, Inc.
--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2013-08-14 Thread Alain Forget
Try the bottom of this page: 
https://lists.sourceforge.net/lists/listinfo/wix-users

-Original Message-
From: Mike Scott [mailto:mike.sc...@bbc.co.uk] 
Sent: Wednesday, August 14, 2013 07:44
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] unsubscribe

 


http://www.bbc.co.uk/
This e-mail (and any attachments) is confidential and may contain personal 
views which are not the views of the BBC unless specifically stated.
If you have received it in error, please delete it from your system.
Do not use, copy or disclose the information in any way nor act in reliance on 
it and notify the sender immediately.
Please note that the BBC monitors e-mails sent or received.
Further communication will signify your consent to this.

--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with 2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with 2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2012-12-12 Thread Alexey Ivanov
Why? :(


2012/12/13 robert.pri...@bentley.com



 --
 LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
 Remotely access PCs and mobile devices and provide instant support
 Improve your efficiency, and focus on delivering more value-add services
 Discover what IT Professionals Know. Rescue delivers
 http://p.sf.net/sfu/logmein_12329d2d
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2012-12-12 Thread Robert.Priest
Sorry. Just trying to reduce the amount of email alerts I get throughout the 
day.  I am sure I will be back shortly.  A lot more Burn stuff to learn :)

-Original Message-
From: Alexey Ivanov [mailto:alexey.iva...@gmail.com] 
Sent: Wednesday, December 12, 2012 6:25 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] unsubscribe

Why? :(


2012/12/13 robert.pri...@bentley.com



 --
  LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free 
 Trial Remotely access PCs and mobile devices and provide instant 
 support Improve your efficiency, and focus on delivering more 
 value-add services Discover what IT Professionals Know. Rescue 
 delivers http://p.sf.net/sfu/logmein_12329d2d
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely 
access PCs and mobile devices and provide instant support Improve your 
efficiency, and focus on delivering more value-add services Discover what IT 
Professionals Know. Rescue delivers http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2012-12-12 Thread Wesley Manning
Do you use outlook?   You could have outlook auto move to another folder.  Then 
you won't get notifications.

-Original Message-
From: robert.pri...@bentley.com [mailto:robert.pri...@bentley.com] 
Sent: December 12, 2012 7:28 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] unsubscribe

Sorry. Just trying to reduce the amount of email alerts I get throughout the 
day.  I am sure I will be back shortly.  A lot more Burn stuff to learn :)

-Original Message-
From: Alexey Ivanov [mailto:alexey.iva...@gmail.com]
Sent: Wednesday, December 12, 2012 6:25 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] unsubscribe

Why? :(


2012/12/13 robert.pri...@bentley.com



 --
  LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free 
 Trial Remotely access PCs and mobile devices and provide instant 
 support Improve your efficiency, and focus on delivering more 
 value-add services Discover what IT Professionals Know. Rescue 
 delivers http://p.sf.net/sfu/logmein_12329d2d
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely 
access PCs and mobile devices and provide instant support Improve your 
efficiency, and focus on delivering more value-add services Discover what IT 
Professionals Know. Rescue delivers http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely 
access PCs and mobile devices and provide instant support Improve your 
efficiency, and focus on delivering more value-add services Discover what IT 
Professionals Know. Rescue delivers http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] UNSUBSCRIBE

2010-11-17 Thread FrankenInUSA
Check the bottom of the email for the following link
https://lists.sourceforge.net/lists/listinfo/wix-users;
on this page, you just enter your email and click on Unsubscribe or
edit options

that should do the trick

On Wed, Nov 17, 2010 at 12:11, Matt Walker matt.wal...@synergis.com wrote:
 How do I unsubscribe?


 Matt Walker
 Installation Development
 200 Kelly Road | Quakertown, PA 18951
 Phone: +1 215.529.9900, x192 | 800.836.5440
 Fax: +1 215.536.9249
 http://www.synergissoftware.com/
 Adept Engineering Document Management  Workflow
 This email and any attachments are intended only for the person or entity to 
 which it is addressed and may contain information which is confidential, 
 privileged or otherwise protected from disclosure. Distribution or copying of 
 this email or the information contained herein by anyone other than the 
 intended recipient is prohibited. If you have received this email in error, 
 please immediately notify the sender by return email and please delete and 
 destroy this email and any attachments.
 -Original Message-

 From: Hernán Martínez [mailto:hernan.marti...@ecc.es]
 Sent: Wednesday, November 17, 2010 12:00 PM
 To: General discussion for Windows Installer XML toolset.
 Subject: [WiX-users] Reference harvesting disabled in 3.6?

 While porting one project from VS Setup to Wix (first time with it) I found 
 that Votive doesn't harvest any reference at all, only the project output. 
 Since I haven't been able to change this behavior I've disabled all the 
 Harvesting flag in every project  and relied on a prebuild task that calls 
 heat.exe to pick all files from a temporary directory.

 Recently I've just found that there's a comment in 3.6 release notes that 
 says Disabled reference harvesting by default in Votive. Is that so? Are 
 there any way to enable it? I assume that it was disabled for a reason, right?

 I'd really prefer to depend on a standard harvesting tool rather than on a 
 bunch of xcopy  del calls in every pre and post build event.

 (Also, given my lack of skills in Wix, I may be missing something obvious.)

 Thanks in advance,
 -Hernán.


 --
 Beautiful is writing same markup. Internet Explorer 9 supports
 standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
 Spend less time writing and  rewriting code and more time creating great
 experiences on the web. Be a part of the beta today
 http://p.sf.net/sfu/msIE9-sfdev2dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 --
 Beautiful is writing same markup. Internet Explorer 9 supports
 standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
 Spend less time writing and  rewriting code and more time creating great
 experiences on the web. Be a part of the beta today
 http://p.sf.net/sfu/msIE9-sfdev2dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Unsubscribe

2010-03-17 Thread Jacek Pospychała
Vegard,
to unsubscribe, go to https://lists.sourceforge.net/lists/listinfo/wix-users
You only need to type your e-mail address to unsubscribe.

On Wed, Mar 17, 2010 at 8:09 AM, Vegard Sandberg
vegard.sandb...@visma.nowrote:

 Hi!

 I want to unsubscribe from wix users list, but I seem to have lost my
 password.





 Kind Regards

 

 Vegard Sandberg

 Systemutvikler

 Visma Unique AS, PB 246, Ranvik Brygge 5, 3201 Sandefjord

 Sentralbord:   +47 33 44 84 00

 Mobil:   +47 93 26 27 95

 http://www.visma.no/offentlig http://www.visma.no/offentlig

 This communication is intended for the person(s) named above only. It
 contains information that is confidential and legally privileged. If
 received in error, please delete this e-mail and notify the sender.

 




 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2009-11-18 Thread Matti Hägerlund
Eh?
/M4tti

2009/11/18 Robert O'Brien robert.obr...@microsoft.com:
 unsubscribe
 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
__o__o__o
  _`\,_ _`\,_ _`\,_
 (_)/ (_)   (_)/ (_)   (_)/ (_)

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2009-11-18 Thread Robert O'Brien
Been trying various supported subscription configuration options, and this 
alternative attempt, to get temporarily unsubscribed from mailing list but 
those haven't been taking . . . going to escalate to 
sitel...@lists.sourceforge.net to see what's up.

-Original Message-
From: Matti Hägerlund [mailto:matti.hagerl...@gmail.com] 
Sent: Wednesday, November 18, 2009 7:17 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] unsubscribe

Eh?
/M4tti

2009/11/18 Robert O'Brien robert.obr...@microsoft.com:
 unsubscribe
 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
__o__o__o
  _`\,_ _`\,_ _`\,_
 (_)/ (_)   (_)/ (_)   (_)/ (_)

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2009-11-18 Thread Christopher Karper
The footer of each message sent has a link to
https://lists.sourceforge.net/lists/listinfo/wix-users which has the
unsubscribe method.

Chris

On Wed, Nov 18, 2009 at 10:22 AM, Robert O'Brien 
robert.obr...@microsoft.com wrote:

 Been trying various supported subscription configuration options, and this
 alternative attempt, to get temporarily unsubscribed from mailing list but
 those haven't been taking . . . going to escalate to
 sitel...@lists.sourceforge.net to see what's up.

 -Original Message-
 From: Matti Hägerlund [mailto:matti.hagerl...@gmail.com]
 Sent: Wednesday, November 18, 2009 7:17 AM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] unsubscribe

 Eh?
 /M4tti

 2009/11/18 Robert O'Brien robert.obr...@microsoft.com:
  unsubscribe
 
 --
  Let Crystal Reports handle the reporting - Free Crystal Reports 2008
 30-Day
  trial. Simplify your report design, integration and deployment - and
 focus on
  what you do best, core application coding. Discover what's new with
  Crystal Reports now.  http://p.sf.net/sfu/bobj-july
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 



 --
__o__o__o
  _`\,_ _`\,_ _`\,_
  (_)/ (_)   (_)/ (_)   (_)/ (_)


 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus
 on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus
 on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] unsubscribe

2009-11-18 Thread Robert O'Brien
...previously tried both temporary (preferred) and permanent options and both 
are not working.   

-Original Message-
From: Christopher Karper [mailto:christopher.kar...@gmail.com] 
Sent: Wednesday, November 18, 2009 7:50 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] unsubscribe

The footer of each message sent has a link to
https://lists.sourceforge.net/lists/listinfo/wix-users which has the
unsubscribe method.

Chris

On Wed, Nov 18, 2009 at 10:22 AM, Robert O'Brien 
robert.obr...@microsoft.com wrote:

 Been trying various supported subscription configuration options, and this
 alternative attempt, to get temporarily unsubscribed from mailing list but
 those haven't been taking . . . going to escalate to
 sitel...@lists.sourceforge.net to see what's up.

 -Original Message-
 From: Matti Hägerlund [mailto:matti.hagerl...@gmail.com]
 Sent: Wednesday, November 18, 2009 7:17 AM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] unsubscribe

 Eh?
 /M4tti

 2009/11/18 Robert O'Brien robert.obr...@microsoft.com:
  unsubscribe
 
 --
  Let Crystal Reports handle the reporting - Free Crystal Reports 2008
 30-Day
  trial. Simplify your report design, integration and deployment - and
 focus on
  what you do best, core application coding. Discover what's new with
  Crystal Reports now.  http://p.sf.net/sfu/bobj-july
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 



 --
__o__o__o
  _`\,_ _`\,_ _`\,_
  (_)/ (_)   (_)/ (_)   (_)/ (_)


 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus
 on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus
 on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users