Gathering user input info ?

Common questions about using Actual Installer.
Post Reply
JhonDoe
Posts: 1
Joined: Thu Jun 24, 2010 11:02 am

Gathering user input info ?

Post by JhonDoe »

HI all,

Firstly great app :D i had built my own installer/un-installer/updater but i never did get around to figuring out how to add my apps to the add-remove programs list and also your does have the professional look & feel to it.

I was just wondering how you gather the user input data ? iv made a custom filed that requests the user to input where they heard of the software (one of my projects) and i dont see how to gather that info. Is this even possible ?

Thx all.
Leo
Site Admin
Posts: 458
Joined: Fri Jan 22, 2010 12:40 pm

Re: Gathering user input info ?

Post by Leo »

A custom info specified by user on the User Information -dialog is storde in <CustomUserInfo> variable.
You can write this info to Registry, INI file, etc.
Leo,
Actual Installer Team
https://www.actualinstaller.com
Jimdandy1956
Posts: 2
Joined: Fri Jun 11, 2010 12:02 am

Re: Gathering user input info ?

Post by Jimdandy1956 »

I guess I am just a beginner, try to be programmer...
How do you write this info to Registry, INI file?
Can you point me in a direction to get specific help?
Thanks.
Leo
Site Admin
Posts: 458
Joined: Fri Jan 22, 2010 12:40 pm

Re: Gathering user input info ?

Post by Leo »

Example: INI File

Code: Select all

INI File:   <InstallDir>\file.ini
Section:   Settings
Key:   SomeKey
Value:   <CustomUserInfo>
Example: Registry

Code: Select all

Root Key: HKEY_CURRENT_USER
SubKey: Software\<CompanyName>\<AppName>
Value Type: REG_SZ
ValueName: SomeText
ValueData: <CustomUserInfo>
Leo,
Actual Installer Team
https://www.actualinstaller.com
Post Reply