[WiX-users] Questions about the Edit control

2010-06-23 Thread Elfe Xu
Hi,

Here is what I want:
In MySettingDlg, I have a Edit control allow user to input a sting, the Next 
button will only be enabled when the string is not empty.
I thought it should be easy, but I've searched the document for long and still 
didn't find solutions.

The code :


  

  
  

  


There are two problems:

1)  The enable/disable status of the Next pushbutton only get updated when 
the Edit control lost focus. I wish it could get updated when text changed.

2)  How to trim the string?  I want to have condition like 
trim(SERVER_NAME)="", but it just don't work.

Thanks,
-Elfe
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Using New Lines in Text Fields for Custom WiX Extension Doesn't Work

2010-06-23 Thread Rob Mensching
In your table's columnDefinition set the escapeIdtCharacters attribute to
"yes".

On Wed, Jun 23, 2010 at 4:54 PM, jnewton  wrote:

>
> Looks like when posting, my xml character codes went away. Here is a
> screenschot of the codes.
>
>
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/file/n5215703/New_Line.png
> --
> View this message in context:
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Using-New-Lines-in-Text-Fields-for-Custom-WiX-Extension-Doesn-t-Work-tp5214598p5215703.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> --
> ThinkGeek and WIRED's GeekDad team up for the Ultimate
> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
> lucky parental unit.  See the prize list and enter to win:
> http://p.sf.net/sfu/thinkgeek-promo
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>


-- 
virtually, Rob Mensching - http://RobMensching.com LLC
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] What can cause WcaInitialize to fail?

2010-06-23 Thread Rob Mensching
Did you call WcaGlobalInitialize() in your DllMain()?

/
 WcaGlobalInitialize() - initializes the Wca library, should be
 called once per custom action Dll during
 DllMain on DLL_PROCESS_ATTACH

/


On Wed, Jun 23, 2010 at 8:46 AM, Fangren  wrote:

>
> Hoping someone can shed some light on WcaInitialize.
>
> I have a WiX based installer that works on hundreds of different machines,
> but on a couple it appears that WcaInitialize is failing.  The log entry
> after WcaInitialize is not written to the logs even with verbose logging.
> What conditions can cause this call to fail?  I've been unable to dig up
> documentation on what this call does exactly or expected return values.
>
> Code example:
>
> HRESULT hr = ::WcaInitialize(install, "MyCA");
> if (FAILED(hr))
> {
>return ERROR_INSTALL_FAILURE;
> }
>
> ::WcaLog(LOGMSG_STANDARD, "Working on MyCA");
>
> Thanks,
>
> Tim
> --
> View this message in context:
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/What-can-cause-WcaInitialize-to-fail-tp5213865p5213865.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> --
> ThinkGeek and WIRED's GeekDad team up for the Ultimate
> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
> lucky parental unit.  See the prize list and enter to win:
> http://p.sf.net/sfu/thinkgeek-promo
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>


-- 
virtually, Rob Mensching - http://RobMensching.com LLC
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Managing Files - directories - folders

2010-06-23 Thread Domingos Ribeiro
It worked, also had to change id="NPC" to id="Npc" so it was exactly what
you said thanks!
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Managing Files - directories - folders

2010-06-23 Thread Blair
I'm not certain but I have a guess:

Change  to 
and try again.

What I am suspecting is that the public name XML is not being changed when
you change the value of INSTALLDIR. By changing the case, you make it a
non-public so it's default value isn't shared with the server-side of the
transaction. Thus, it will get computed there based on the passed value for
INSTALLDIR.

-Original Message-
From: Domingos Ribeiro [mailto:ribeiro.domin...@gmail.com] 
Sent: Wednesday, June 23, 2010 10:43 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Managing Files - directories - folders

I'm using Sharpdevelo 3.2 and Xna 3.1 and .net 3.5 in case it changes
anything

I made an installer and it works fine if I don't change the default
directory (in program files)

If i change the directory all but one folder will be in the new directory
and it puts the xml folder in the default one..

and the program doesn't work since it can't find the xml file if it's not
with the rest.


So I have 2 questions :

1.how could i make it work like it is (with xml in a different folder than
the rest)?

2.How can I force the installer to put the xml folder with the rest in
whatever directory the user chooses?

Thanks

ok so to help narrow down the problem I took out the folders which worked
and tested this again and the problems still persists but at least i have
less code to post. Under content I put a comment saying put everything here,
which is where the code for the other directories would go..

All of the component are in the same Feature...



http://schemas.microsoft.com/wix/2006/wi";>






























































































Re: [WiX-users] Using New Lines in Text Fields for Custom WiX Extension Doesn't Work

2010-06-23 Thread jnewton

Looks like when posting, my xml character codes went away. Here is a
screenschot of the codes.

http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/file/n5215703/New_Line.png
 
-- 
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Using-New-Lines-in-Text-Fields-for-Custom-WiX-Extension-Doesn-t-Work-tp5214598p5215703.html
Sent from the wix-users mailing list archive at Nabble.com.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Using Restart Manager during uninstall

2010-06-23 Thread ivo
Hi

As I mentioned in my prvious thread, I'm trying to get the Restart Manager to 
show up during uninstall from the Control Panel.

Here's what I know so far:
A) If I run the MSI directly then I get options like "Change" and "Remove". 
When I pick Remove everything works fine and I do get the Restart Manager popup.

B) If I pick Uninstall from the Control Panel I don't get the Restart Manager. 
Same thing happens when I run "msiexec /x setup.msi".

C) If I run "msiexec /x setup.msi /qf" I do get the Restart Manager. One 
problem is that the welcome screen says "Install" instead of "Remove".

D) If I go to the registry and set the WindowsInstaller value to 0, then 
uninstalling from the Control Panel uses the full UI and everything is good. 
However then the icon in the Control Panel gets busted. I'm hoping that's 
fixable through the DisplayIcon value.

All of this makes me certain that the only problem is that the uninstaller 
doesn't run in full UI mode.

So here are my questions:
1) Do you think it is a good idea to modify the registry and change the 
WindowsInstaller and DisplayIcon values? What potential problems can it cause?

2) What is the best way to do that? With a registry component or a custom 
action? If it's a custom action, what is the right time to invoke it? The 
action must be elevated because it writes to HKLM, but must be after the 
original value of WindowsInstaller is set.

3) Why does "msiexec /x setup.msi /qf" show "Install" button in the welcome 
screen? Not only that, but the message above the progress says "please wait 
while INSTALLING...". Any way to fix this? Basically I need a command line for 
msiexec that removes the package with full UI (and correct UI too).


Thanks
Ivo


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Using New Lines in Text Fields for Custom WiX Extension Doesn't Work

2010-06-23 Thread jnewton

I have developed a custom extension and have found that if I use
newline/return character xml codes in text fields, WiX incorrectly generates
the temporary IDT files. Thus when WiX is trying to apply the IDT files to
the MSI, it fails. For example, suppose I have the following custom table:


   
   
  First line

Second line
   


WiX generates the correct IDT file which looks like:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/file/n5214598/Custom_Table.png
 

Notice the characters codes where the new line and return characters are at.

If I try and use my custom extension, WiX doesn't add these character codes
to the IDT file. It actually keeps the new lines and spaces. At first I
thought maybe my extension was acting up but I tested this use the WiX
Firewall extension with something like:


   


The error you get in Visual Studio is:
Error   12  There was an error importing table '' from file
'C:\Users\jnewton\AppData\Local\Temp\vzpbgirf\.idt'.
C:\Users\jnewton\AppData\Local\Temp\vzpbgirf\.idt1   1   

Is there a workaround to this? Maybe I am doing something wrong but you can
use those xml codes in other WiX tables and they work great. 


-- 
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Using-New-Lines-in-Text-Fields-for-Custom-WiX-Extension-Doesn-t-Work-tp5214598p5214598.html
Sent from the wix-users mailing list archive at Nabble.com.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Dependency on Sql Server

2010-06-23 Thread Will Sullivan
My service uses an instance of Sql Server.  Now, if that instance is on the 
current machine, I need to set a dependency on that service so that my service 
starts afterwards.

I can foresee a hard time getting this into my installer.  I need to determine 
if the sql server is on the current machine from the server/instance provided 
by the user, then determine the method of identifying the service in order to 
set a dependency on it, then dynamically adding this to my service during the 
install.

So, is there a relatively easy way to do this?  Or are there any guides out 
here for this situation?  Looking for any help on this I can get!  TIA.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Managing Files - directories - folders

2010-06-23 Thread Domingos Ribeiro
I'm using Sharpdevelo 3.2 and Xna 3.1 and .net 3.5 in case it changes
anything

I made an installer and it works fine if I don't change the default
directory (in program files)

If i change the directory all but one folder will be in the new directory
and it puts the xml folder in the default one..

and the program doesn't work since it can't find the xml file if it's not
with the rest.


So I have 2 questions :

1.how could i make it work like it is (with xml in a different folder than
the rest)?

2.How can I force the installer to put the xml folder with the rest in
whatever directory the user chooses?

Thanks

ok so to help narrow down the problem I took out the folders which worked
and tested this again and the problems still persists but at least i have
less code to post. Under content I put a comment saying put everything here,
which is where the code for the other directories would go..

All of the component are in the same Feature...



http://schemas.microsoft.com/wix/2006/wi";>











































































































 

Re: [WiX-users] How to delete the extracted MSI after install

2010-06-23 Thread Wilson, Phil
There's a good case for not deleting it at all:

http://blogs.msdn.com/b/windows_installer_team/archive/2006/05/24/605835.aspx 

Rule 31. 

Phil Wilson 

-Original Message-
From: Andy.Kruger [mailto:appr...@gmail.com] 
Sent: Wednesday, June 23, 2010 2:43 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] How to delete the extracted MSI after install



I have a VC++ bootstrapper with an embedded MSI.
during install MSI gets extracted to the %USERPROFILE% path.

How do i clean up the extracted MSI after install?? 
Should i be doing it from the bootstrapper or from with in the WiX-MSI??

-
Andy
Build&Deployment
Schneider Electric
-- 
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-delete-the-extracted-MSI-after-install-tp5212438p5212438.html
Sent from the wix-users mailing list archive at Nabble.com.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


*** Confidentiality Notice: This e-mail, including any associated or attached 
files, is intended solely for the individual or entity to which it is 
addressed. This e-mail is confidential and may well also be legally privileged. 
If you have received it in error, you are on notice of its status. Please 
notify the sender immediately by reply e-mail and then delete this message from 
your system. Please do not copy it or use it for any purposes, or disclose its 
contents to any other person. This email comes from a division of the Invensys 
Group, owned by Invensys plc, which is a company registered in England and 
Wales with its registered office at Portland House, Bressenden Place, London, 
SW1E 5BF (Registered number 166023). For a list of European legal entities 
within the Invensys Group, please go to 
http://www.invensys.com/legal/default.asp?top_nav_id=77&nav_id=80&prev_id=77. 
You may contact Invensys plc on +44 (0)20 7821 3848 or e-mail 
inet.hqhelpd...@invensys.com. This e-mail and any attachments thereto may be 
subject to the terms of any agreements between Invensys (and/or its 
subsidiaries and affiliates) and the recipient (and/or its subsidiaries and 
affiliates).



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WixUI CustomizeDlg

2010-06-23 Thread Matt Johnson
Simple.  There are three separate applications, all of which share a large set 
of common components.  The user should be able to install any one or all of 
these applications.  The common components are in their own component group and 
assigned to all features, but it does not make sense to put them in their own 
feature because they don't function without one of the three applications.  It 
doesn't make sense to have separate installers for these applications because a 
common scenario is to install all three on the same machine, and the common 
components are quite large.


Matt Johnson MCPD, MCTS, MCSD, MCDBA
Director of Application Development
Time America, Inc.
ma...@timeamerica.com | www.timeamerica.com

-Original Message-
From: Pally Sandher [mailto:pally.sand...@iesve.com] 
Sent: Wednesday, June 23, 2010 4:31 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] WixUI CustomizeDlg

Why does your Feature Tree have every Feature selectable as disabled?
Surely there's some core components of your application you'd want to
always be installed if the user is running your installer?

It's kind of pointless to try & handle a case where the user doesn't
select anything for install. Why would they be running the installer in
the first place if that was their intention?

Palbinder Sandher 
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the **
Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 
Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP
Email Disclaimer

-Original Message-
From: Matt Johnson [mailto:ma...@timeamerica.com] 
Sent: 22 June 2010 20:14
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] WixUI CustomizeDlg

In the WixUI CustomizeDlg, I don't want the user to be able to continue
if there is nothing to do.  For example, if no features are selected
during initial install, or if no features are added or removed during a
maintenance install.

The best way I've found to do this so far is with the following:

  

This could get out of hand quickly as more features are added, and
exceed the 255 character limit of the condition. Surely there is a
better way.

I thought of using the ADDLOCAL and REMOVE properties, but they are not
updated as selections are changed on the dialog.  There's the
SelectionNoItems event, but it only handles the case where there are no
items in the selection box, which is pretty much never.

Ideas?

Thanks,

Matt Johnson MCPD, MCTS, MCSD, MCDBA
Director of Application Development
Time America, Inc.
ma...@timeamerica.com | www.timeamerica.com




--
ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's
Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit.  See the
prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] What can cause WcaInitialize to fail?

2010-06-23 Thread Fangren

Hoping someone can shed some light on WcaInitialize.

I have a WiX based installer that works on hundreds of different machines,
but on a couple it appears that WcaInitialize is failing.  The log entry
after WcaInitialize is not written to the logs even with verbose logging. 
What conditions can cause this call to fail?  I've been unable to dig up
documentation on what this call does exactly or expected return values.

Code example:

HRESULT hr = ::WcaInitialize(install, "MyCA");
if (FAILED(hr))
{
return ERROR_INSTALL_FAILURE;
}

::WcaLog(LOGMSG_STANDARD, "Working on MyCA");

Thanks,

Tim
-- 
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/What-can-cause-WcaInitialize-to-fail-tp5213865p5213865.html
Sent from the wix-users mailing list archive at Nabble.com.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Heat : harvest project documentation without directory structure

2010-06-23 Thread dB .
I had the same type of problem(s) and eventually gave up on heat to write 
something simpler (aka dumber) that just works.

http://code.dblock.org/ShowPost.aspx?id=97



dB. @ dblock.org 
Moscow|Geneva|Seattle|New York



-Original Message-
From: Gernot Kerger [mailto:gernot.ker...@entropysoft.net] 
Sent: Wednesday, June 23, 2010 7:26 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Heat : harvest project documentation without directory 
structure

Hi all,

 

I'm trying to harvest a project's Documentation output using the
following line:

 

heat project "Foo.Project\Foo.Project.csproj" -sfrag -cg
FooProjectDocuments -pog:Documents -gg -dr MyDir -nologo -out
Foo.project.documents.wxs

 

The resulting output is:

 



http://schemas.microsoft.com/wix/2006/wi";>





















































 

My problem is that I don't want the directory structure (bin\debug) to
be created. I just need to have the documentation output referenced in
MyDir as supplied by the -dr flag:

 

 



http://schemas.microsoft.com/wix/2006/wi";>

















































 

 

Is there a way to perform this?

 

 

 

Thanks,

 

Gernot

 

 

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WixUI CustomizeDlg

2010-06-23 Thread Pally Sandher
Why does your Feature Tree have every Feature selectable as disabled?
Surely there's some core components of your application you'd want to
always be installed if the user is running your installer?

It's kind of pointless to try & handle a case where the user doesn't
select anything for install. Why would they be running the installer in
the first place if that was their intention?

Palbinder Sandher 
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the **
Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 
Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP
Email Disclaimer

-Original Message-
From: Matt Johnson [mailto:ma...@timeamerica.com] 
Sent: 22 June 2010 20:14
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] WixUI CustomizeDlg

In the WixUI CustomizeDlg, I don't want the user to be able to continue
if there is nothing to do.  For example, if no features are selected
during initial install, or if no features are added or removed during a
maintenance install.

The best way I've found to do this so far is with the following:

  

This could get out of hand quickly as more features are added, and
exceed the 255 character limit of the condition. Surely there is a
better way.

I thought of using the ADDLOCAL and REMOVE properties, but they are not
updated as selections are changed on the dialog.  There's the
SelectionNoItems event, but it only handles the case where there are no
items in the selection box, which is pretty much never.

Ideas?

Thanks,

Matt Johnson MCPD, MCTS, MCSD, MCDBA
Director of Application Development
Time America, Inc.
ma...@timeamerica.com | www.timeamerica.com




--
ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's
Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit.  See the
prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Heat : harvest project documentation without directory structure

2010-06-23 Thread Gernot Kerger
Hi all,

 

I'm trying to harvest a project's Documentation output using the
following line:

 

heat project "Foo.Project\Foo.Project.csproj" -sfrag -cg
FooProjectDocuments -pog:Documents -gg -dr MyDir -nologo -out
Foo.project.documents.wxs

 

The resulting output is:

 



http://schemas.microsoft.com/wix/2006/wi";>





















































 

My problem is that I don't want the directory structure (bin\debug) to
be created. I just need to have the documentation output referenced in
MyDir as supplied by the -dr flag:

 

 



http://schemas.microsoft.com/wix/2006/wi";>

















































 

 

Is there a way to perform this?

 

 

 

Thanks,

 

Gernot

 

 

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to delete the extracted MSI after install

2010-06-23 Thread Andy.Kruger


I have a VC++ bootstrapper with an embedded MSI.
during install MSI gets extracted to the %USERPROFILE% path.

How do i clean up the extracted MSI after install?? 
Should i be doing it from the bootstrapper or from with in the WiX-MSI??

-
Andy
Build&Deployment
Schneider Electric
-- 
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-delete-the-extracted-MSI-after-install-tp5212438p5212438.html
Sent from the wix-users mailing list archive at Nabble.com.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX + AppFabric

2010-06-23 Thread Rob Mensching
Given that I didn't know that, the answer is, "I don't know". 

On Tue, Jun 22, 2010 at 11:44 PM, Johannes Hetzer
wrote:

> There are two versions of AppFabric - with version I mean is the:
>
> Windows Server AppFabric is a set of integrated technologies that make it
> easier to build, scale and manage Web and composite applications that run on
> IIS.
>
> Means that the AppFabric runs local on an IIS.
>
> Is then the answer still "...no" ?
>
> KR
>
> >>> Rob Mensching  23.06.2010 05:41 >>>
> AppFabric? That sounds like Azure... no?
>
> On Tue, Jun 22, 2010 at 7:18 AM, Johannes Hetzer  >wrote:
>
> > Hello,
> >
> > does anyone know if WiX works with AppFabric or does someone have a
> sample
> > of how to install a WCF service into AppFabric using WiX ?
> >
> > KR,
> >
> > Johannes Hetzer
> >
> >
> --
> > ThinkGeek and WIRED's GeekDad team up for the Ultimate
> > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
> > lucky parental unit.  See the prize list and enter to win:
> > http://p.sf.net/sfu/thinkgeek-promo
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> >
>
>
> --
> virtually, Rob Mensching - http://RobMensching.com LLC
>
> --
> ThinkGeek and WIRED's GeekDad team up for the Ultimate
> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
> lucky parental unit.  See the prize list and enter to win:
> http://p.sf.net/sfu/thinkgeek-promo
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> --
> ThinkGeek and WIRED's GeekDad team up for the Ultimate
> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
> lucky parental unit.  See the prize list and enter to win:
> http://p.sf.net/sfu/thinkgeek-promo
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>


-- 
virtually, Rob Mensching - http://RobMensching.com LLC
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users