hi
  I have a  <control>
                     In this i have printed the path which user entered  
earlier.Now i want to send this path to my  <Property> which is under this 
control because i want to print this path through my DLL.(deferred custom 
action).

  Problem is that I am not able to capture the path.
  Plz help.

 <Control Id="NameUserLang" Type="Text" X="212" Y="50"   Width="101" 
Height="18" UserLanguage="yes" Text="[PATH]"> 

   <Property Id="PATH1">"[PATH]"</Property> 
 </Control>
 
       
    <CustomAction Id="MyAction" Return="check" Execute="deferred" 
BinaryKey="dll" 
                                              DllEntry="Print" HideTarget="yes" 
/>
    <Binary Id="dll" src="dll.dll" />
    
   
    <Property Id="SOME_PUBLIC">"Text"</Property> 
      
        
//This is the way i am transferring it to my dll..

    <CustomAction Id="MyAction.SetProperty" Return="check" Property="MyAction"
                                                              Value="[PATH1]" />
        
    <InstallExecuteSequence>
         <Custom Action="MyAction.SetProperty"  After="InstallFiles"/> 
 
   
        <Custom Action="MyAction"   After="MyAction.SetProperty" /> 
    </InstallExecuteSequence>

//But the problem is that it is sending only the string "path" not the actual 
path.what should i do to send the original path.....


DISCLAIMER
==========
This e-mail may contain privileged and confidential information which is the 
property of Persistent Systems Pvt. Ltd. It is intended only for the use of the 
individual or entity to which it is addressed. If you are not the intended 
recipient, you are not authorized to read, retain, copy, print, distribute or 
use this message. If you have received this communication in error, please 
notify the sender and delete all copies of this message. Persistent Systems 
Pvt. Ltd. does not accept any liability for virus infected mails.

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to