Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Need Help with Features


2 replies to this topic

requiem78

requiem78
  • Members
  • 3 posts

Posted 05 May 2005 - 07:05

Hi.I want to make an installer that when the user select option1 then it will dispaly to him Feature1 Feature2 and Feature3 (in TreeMode) which all have subfeatures and then he will select from these features which he wants to install.If the user select option2 then it will show him Feature2 Feature3 and Feature4.Feature2 and Feature3 are the same with the first option.How can I design this thing?

Silverlay

Silverlay
  • Members
  • 68 posts

Posted 05 May 2005 - 07:26

There are some function this two blink.gif

CODE


FeatureSetData ( szFeatureSource, szFeature, nInfo, nData, szData );
// Using it u can make them visible or not
FeatureGetData ( szFeatureSource, szFeature, nInfo, nvResult, svResult );
// Using this u can know is some feature selected


Bonum initium est dimidium facti

requiem78

requiem78
  • Members
  • 3 posts

Posted 05 May 2005 - 08:21

Thank you my friend.You solved my problem.