Topic: Installer using InnoSetup

Home page of InnoSetup
http://www.jrsoftware.org/isinfo.php



Usually Windows application install to folder "Program Files" which don't have rights to write for users, thus you can't store database file "sqlite.db" and setting file "settings.ini" in this folder.


Using this example, your database will be store there:
{userappdata}\MyVisualDatabase\Databases\{your application  name}\


Setting file will be store there:
{userappdata}\MyVisualDatabase\Configs\{filename}.exe\


Uninstallation will not delete database file from user system.


Example, how to make installer using InnoSetup, run file "Employees.iss" to make install file.
http://myvisualdatabase.com/download/In … oSetup.zip

Dmitry.

Re: Installer using InnoSetup

Thank you!