
BAyyanar.20190225200532 asked a question.
Hi,
in an install script project, how can we let the installer to install earlier version than installed version (a) how to make an installer to downgrade? I am stuck with a pop-up saying "This setup installs an earlier version"
Thanks,.
Hi @balaji_ayyanar ,
When you click on Setup.Rul,you will be able to see two combo-boxes where you can select methods in the editor window.
if( nResult = VERSION_COMPARE_RESULT_OLDER ) then
szMsg = SdLoadString( IDS_IFX_ERROR_UPDATE_NOT_APPROPRIATE );
SdSubstituteProductInfo( szMsg );
MessageBox( szMsg, SEVERE );
abort;
endif;//Then try out,it will work.I had verified this been working.
Thanks,
Jenifer