Re: [WiX-users] BrowseDlg SelectionPathOn help

2010-01-01 Thread Sagar1111
Oh thanks i have done as u said but it gives me Error 2343 - Specified path is empty disclaimer disclaimer wrote: > > Hi. > > My opinion or how I did: > > I used type "PathEdit" instead of "Text" as is on your control > "FolderDirPath". So it looks like > > Height="15" Property="WIXUI_FOLDE

Re: [WiX-users] BrowseDlg & SelectionPathOn help

2010-01-01 Thread Sagar1111
I have gone through CustomizeDlg.wxs As far as my understanding goes, the "SelectionPath" and other events starting with "Selection" are linked with the selection tree. Now in my case, i.e, in my ChangeFolderDlg, i dont have "SelectionTree" control what i have is just a control Id="FolderDirPath"

Re: [WiX-users] differentiating between COM & C++ dlls from installerdatabase (.msi)

2010-01-01 Thread dan
The safest way is to extract the .dll files to a temporary directory and verify if they export the method DllRegisterServer. A COM .dll must export this method. You can use the LoadLibrary and GetProcAddress Windows API-s for this. Dan Quoting "nagaram.c" : > Thanks once again for clarificati