nsis disable next button of component page -


i writing installer using nsis. on ".oninit" iam checking prerequisite software there or not , based on want enable or disable "next" button of component page.here iam trying

function .oninit      ${if} $javaexists == false ;check if java installed           ${orif} $tomcatexists == false ;check if tomcat installed                ${orif} $mysqlexists == false ;check if mysql installed                ;code disable next button of component page ${endif} functionend 

the component page not exist in .oninit, need call getdlgitem+enablewindow in show callback component page...


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -