I developed VB.Net(2003) windows application. The application have more than
one modules(call it as different assemply). I want to list all the modules
during the installation then the user can able to choose modules by own
instead of installing all the modules. (Like MSOffice installation we can
able to choose Word or excel or Access)
Any one can help me on this issue.
Thanks in advance.
James.
When you install Office, the pieces like Word, Excel etc are features in the
setup. Visual Studio setups do not have the capability of creating
features - they have just a single feature called DefaultFeature. You can
approximate that behavior with conditions on files that are based on a
checkboxes dialog, but it doesn't work like features do. For example, with
features you can go to Add/Remove Programs and modify the product to add and
remove features - you can't do that that with VS setups. There are about 20
tools to build MSI files, VS just being one of them.
http://installsite.org/pages/en/msi/authoring.htm

Signature
Phil Wilson
[Microsoft MVP-Windows Installer]
Definitive Guide to Windows Installer
http://apress.com/book/bookDisplay.html?bID=280
>I developed VB.Net(2003) windows application. The application have more
>than
[quoted text clipped - 7 lines]
> Thanks in advance.
> James.