Re: [WiX-users] CA only during Repair

2008-04-03 Thread Xu nanxuan
Maybe you can try to change the condition statement to: Installed AND NOT REMOVE="ALL" which means the precondition is "installed already" and "not in remove mode". > Date: Wed, 2 Apr 2008 08:44:14 -0700> From: [EMAIL PROTECTED]> To: > wix-users@lists.sourceforge.net> Subject: [WiX-users] CA only

[WiX-users] how to make my Custom Action run on initial-setup, repair but not remove?

2008-03-31 Thread Xu nanxuan
I know this should not be a complicated problem but i am not proficient in Conditions settting. The following is myThings: Not REMOVE="ALL" The result is myAction can run well in Setup and Repair, but meet an "end up prematually" problem in Remove. In fact, i don't want myAction run in Rem

Re: [WiX-users] How to realize the Back button in VerifyReadyDlg?

2008-03-30 Thread Xu nanxuan
TECTED]: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [WiX-users] How to realize the Back button in VerifyReadyDlg? Xu nanxuan wrote: 567There are a bunch of different properties for that button. Likely the one being triggered isn't WixUI_VerifyReadyDlg_BackInstallDir. Take a look at the

Re: [WiX-users] How to realize the Back button in VerifyReadyDlg?

2008-03-29 Thread Xu nanxuan
ck to WelcomeDlg from myDlg through the Back button on myDlg). Date: Sat, 29 Mar 2008 13:26:29 -0700From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: [EMAIL PROTECTED]; [EMAIL PROTECTED]: Re: [WiX-users] How to realize the Back button in VerifyReadyDlg? Xu nanxuan wrote: Thanks. In fact, the &quo

Re: [WiX-users] How to realize the Back button in VerifyReadyDlg?

2008-03-27 Thread Xu nanxuan
hod.> Date: Thu, 27 Mar 2008 05:32:29 -0700> From: [EMAIL PROTECTED]> To: wix-users@lists.sourceforge.net> Subject: Re: [WiX-users] How to realize the Back button in VerifyReadyDlg?> > > > > Xu nanxuan wrote:> > > > > > For example, I need the following

[WiX-users] How to realize the Back button in VerifyReadyDlg?

2008-03-27 Thread Xu nanxuan
For example, I need the following sequence: WelcomeDlg --> VerifyReadyDlg. But i've no idea how to realize the Back button in the latter dlg so that i can move back from VerifyReadyDlg during installation. I've tried the following methods but none work: Fact is i can click the Back btn i

Re: [WiX-users] what is the difference between "" and "1"

2008-03-22 Thread Xu nanxuan
Thanks.Btw: what do "Not Installed" and "Installed", which are also located in the middle of <>, mean? _ Connect to the next generation of MSN Messenger  http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-us&source=wlma

[WiX-users] what is the difference between "" and "1"

2008-03-22 Thread Xu nanxuan
I've no idea what the "1" located in the middle means? And based on this, i came across a phenomenon: when i write , the msi can work as i expected, but it will run into "end prematurely" problem when removed (here i mean "remove" rather than "uninstall", if i uninstall it, say, from contro

[WiX-users] How can i make a line feed if the dialog title is too long?

2008-03-16 Thread Xu nanxuan
i have a long product name. When the stock dialog appears, the dialog title can not be shown completely. how can i make a line feed? BTW: it's strange that i have a custom dialog whose dialog title is also very long, but it can be shown in two lines automatically, and i didn't make any specif

Re: [WiX-users] Is there a way to use my own bitmap?

2008-03-15 Thread Xu nanxuan
I think i've got it. From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Sat, 15 Mar 2008 16:40:01 +0800Subject: [WiX-users] Is there a way to use my own bitmap? In fact, my question is not only limited to bmp, but other resources like texts, and so on. Firstly, i have to make use of "" to make my

[WiX-users] Is there a way to use my own bitmap?

2008-03-15 Thread Xu nanxuan
In fact, my question is not only limited to bmp, but other resources like texts, and so on. Firstly, i have to make use of "" to make my msi, but i need to do some change to the stock dialogs. i.e.I need to use my bmp as the BannrBmp rather than the default one that is generated when i finis

Re: [WiX-users] Why VS2005 with Votive failed to compile new Wix project?

2008-03-05 Thread Xu nanxuan
are those? Thanks Date: Tue, 4 Mar 2008 21:12:50 -0800From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [WiX-users] Why VS2005 with Votive failed to compile new Wix project? Xu nanxuan wrote: "Error 4 The localization variable !(loc.WixUINext) is unknown. Pl

[WiX-users] Questions about the msi Administration issues

2008-03-04 Thread Xu nanxuan
I can install a file in some folders on target machine, but failed to other folders. I know different folds have different access levels. But how can i have my .msi have the most advantage access level so that i can install file to any target folder? Thanks!

[WiX-users] Question about custom action-Different behaviors in different OS?

2008-03-04 Thread Xu nanxuan
In my custom Wix, I have a custom action aiming at a dllentry (the dll is written in C++ in VS 2005). All of this works fine on my vista 64bit; but when I move the msi file to longhorn 64bit, it doesn't work correctly (the result is premature setup, and i can still find it in control panel). I

Re: [WiX-users] How to use RemoveFile and CopyFile?

2008-03-04 Thread Xu nanxuan
l, why don't you just install the file to where you want it in the first place?> > Rob> > Xu nanxuan wrote:> > 1 > > > 2 > > > > 3 > DestinationProperty="T1"/>> > 4 > > > > 5 > > > > Question 1:> &g

[WiX-users] How to use RemoveFile and CopyFile?

2008-03-04 Thread Xu nanxuan
1 3 4 5 Question 1: Is it possible to just CopyFile without installing file? I mean can i remove Line 2? I've tried the following, but it fails Question 2: I use RemoveFile because n1.txt in Line 1 is useless to my customization. But Line 4 didn't work. I mean n1.txt is still th

Re: [WiX-users] how to retrieve the value from a "Edit"

2008-03-04 Thread Xu nanxuan
I think I've got it. Thanks! Xu nanxuan wrote: I want to retrieve the value from an "Edit" Control Type, and then pass the retrieved string to a custom dll as a parameter to a function of that dll. How can i do that? Thanks!Controls set property values. You can't

[WiX-users] Why VS2005 with Votive failed to compile new Wix project?

2008-03-03 Thread Xu nanxuan
After downloading a wix sample (with WixUiExtention), I can correctly compile it and generate the msi file. However, when i new a Wix project in VS2005, I cannot compile it when including some stock dialogs like "WelcomeDlg". Errors are: "Error 4 The localization variable !(loc.WixUINext) is

Re: [WiX-users] how to retrieve the value from a "Edit"

2008-03-03 Thread Xu nanxuan
func get the value of "Edit" in 1.? Thanks! Xu nanxuan wrote: I want to retrieve the value from an "Edit" Control Type, and then pass the retrieved string to a custom dll as a parameter to a function of that dll. How can i do that? Thanks!Controls set property values.

[WiX-users] how to retrieve the value from a "Edit"

2008-03-03 Thread Xu nanxuan
Hi, all: I want to retrieve the value from an "Edit" Control Type, and then pass the retrieved string to a custom dll as a parameter to a function of that dll. How can i do that? Thanks! _ Express yourself instantly with MSN Messe