What i need is the user to be able pick not only the installation path, but also a path where they want to put configuration files for my program.
At the moment i have a setup project in the same solution as the actual program (the program is an outlook 2010 add-in, but dont think that matters). I tried to work with custom actions using a class library but that doesnt seem to work out. I have tried using different project types as Installer Class for the custom action, but none of them worked. I have a Windows Form with a button on it that should open a FolderBrowserDialog
and put whatever folder the user chooses into a textbox. but whenever i try to do folderBrowserDialog.ShowDialog()
the form freezes completely. The FolderBrowserDialog
never shows at all.
Any help much appreciated :)
greets