shivit wrote: > I am trying to display the destination folder path selected through Wix UI. > MsiGetProperty(hInstall,"WIXUI_INSTALLDIR",folderName,&folderLen) > > But the value appearing in the Message Box on entering the DLL is > "TARGETDIR" which is because of > <Property Id="WIXUI_INSTALLDIR" Value="TARGETDIR" /> > > How to obtain the new folder path that the user is selecting in the Wix UI? >
WIXUI_INSTALLDIR is an indirect property; it contains the name of the property, so you need to do two MsiGetProperty calls. -- sig://boB http://joyofsetup.com/ ------------------------------------------------------------------------- SF.Net email is sponsored by: Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ WiX-devs mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wix-devs
