[WiX-users] File Chooser Dialog

2007-02-13 Thread Guillaume Girard
Hi, I can't find any support in Wix (or rather, in MSI) for building a file chooser dialog. In particular, I'm missing a file list control. Am I just being confused? If this is indeed not supported by Wix/MSI, how would you go building one? I thought of having a custom action filling in a

Re: [WiX-users] File Chooser Dialog

2007-02-13 Thread Stefan Pavlik
Hi Guillaume,... The MSI does not support the File browse dialog. You should check the CFileDialog class in MFC http://msdn2.microsoft.com/en-us/dk77e5e7(VS.80).aspx Here is a snippet of the code I was using for the same purpose: extern C UINT __stdcall CAOpenFileDialog(MSIHANDLE hInstall) {

Re: [WiX-users] File Chooser Dialog

2007-02-13 Thread Stefan Pavlik
It is the C++ CustomAction Type 1 (CA in Dll). I didn't mention it but I think you have realised that. Stefan Stefan Pavlik wrote: Hi Guillaume,... The MSI does not support the File browse dialog. You should check the CFileDialog class in MFC