In article <1229353482945-1658552.p...@n2.nabble.com>,
    md5hans <hans.olaus...@carmenta.com>  writes:

> We are compiling UNICODE. Using L"CustomActionData" instead of
> _T("CustomActionData") makes no difference.

Its not the source of your problem here, but TCHAR and _T() go
together.  WCHAR and L"" go together.  You shouldn't mix TCHAR and
L"", nor should you mix WCHAR and _T().  So either use WCHAR,
MsiGetPropertyW and L"" or TCHAR, MsiGetProperty and _T().

Back to the source of your problem.  It must be something in your C++
code, because MsiGetProperty for CustomActionData most definately works
for deferred C++ custom actions.  Keep looking.
-- 
"The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download
      <http://www.xmission.com/~legalize/book/download/index.html>

        Legalize Adulthood! <http://blogs.xmission.com/legalize/>

------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to