Inno Setup add an option to install conduit toolbar -
i been looking online toolbar option inno setuo code or example can't find want implement toolbar option install when user install app.
anyone have example that?
it's simple choose if want install or not , 2 more check box homepage / search , install it.
thanks!
inno has several ways pull of asking for. on of simplest way's use [components]
and/or [tasks]
section. both documented in file.
the basic usage is
[components] name: "toolbar"; description: "install toolbar"; types: full [files] source: "toolbarfile1.ext'; destdir: "{app}"; components: toolbar source: "toolbarfile2.ext'; destdir: "{app}"; components: toolbar
another options uses pascal scripting , use createinputoptionpage()
function call create custom page. documented in file. several examples of how use can found in other questions on stackoverflow.
Comments
Post a Comment