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

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

c# - SharpSVN - How to get the previous revision? -

php cli reading files and how to fix it? -