cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
gunjan_raizada
Level 3

How to show version information on Feature selection page in Advanced Suite installer

Hello,

I am carrying a premier edition IS. I want to modify the Feature selection page in Suite installer wizard, where i want to show the currently installed or available version info along with the Feature Name. Is it possible? how can i implement this?
Labels (1)
0 Kudos
(3) Replies
Marek22
Level 5

Hello,
To achieve any custom functionality, it is good to write your own c++ actions(make sure you compile your dll as Multi-Threaded). Idea how the code looks like is:


#import "C:\Program Files (x86)\InstallShield\2012Spring\Redist\Language Independent\i386\SetupSuite.exe" no_namespace raw_interfaces_only named_guids

extern "C" {
__declspec(dllexport) HRESULT __stdcall MyCustomActions(IDispatch *pDispSuiteUIExtension)
{
CComQIPtr spSuiteUIExtenstion = pDispSuiteUIExtension;
}
}


Hope it helps,
Marek
0 Kudos
gunjan_raizada
Level 3

Thanks for the fast reply marek!!
I didn't get it.. how to use suite properties or methods in dll and how to include that in Suite installer?since there is no provision of writing custom action in suite installer.Can you describe it little more.
0 Kudos