• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Creating a Visual Studio Installer

JoeCDaMan

Senior member
Can someone recommend a good resource for creating a Setup Wizard project with Visual Studio . net 2003. I have tried googling for it but didn't quite find what I was looking for.

Thanks
 
I just did the for the first time today. It wasn't so bad. I had a few issues with naming the setup project that was added. I wanted the installer to display the name of my app not the appInst that I used to name the setup project. It caused a conflict and I eventually got everything straight. So, just watch out how you name things, fyi.

It wasn't hard though, just fill in the property page for the setup project and add shortcuts in the File Editor if you want any.
 
Did you have any luck detecting the actual installation path? I read somewhere that there was a property called [TARGETDIR] that you could use in your CustomActionData. The installer was throwing exceptions at runtime complaining that the property didn't exist. Any advice?
 
What I want to do is create a config file for the app that I am installing on the fly and then place it in the same directory. I just don't know how to get a handle on the path that the user finally decides on using. Any advice would be appreciated.
 
Back
Top