Thanks, But I'm still a little confused. Could you please give me some examples 
based on the followings:
 
e.g 
1. <dialog ...
      <control id="edit" type="Edit"...
 
2. <Binary id="myDll" SourceFile="myDll"/>
    <CustomAction Id="ca" BinaryKey="myDll" DllEntry="func"/>
 
3.in the myDll.ll file, things are like this:
UINT _stdcall func(MSIHANDLE hInstaller)
{
string str;
MessageBoxA(str);
return ERROR_SUCCESS;

}
 
Then, how can I have 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. You can't pass properties 
to custom actions but your custom action can use WcaGetProperty or 
MsiGetProperty to read them.-- 
sig://boB
http://joyofsetup.com/
_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to