define variable vcCharacter as character no-undo.
/* To load the ini */
load "<ini file name without the .ini>" DIR "<directory>" new BASE-KEY "ini" no-error.
/* To use the ini that was just loaded */
use "<ini file name without the .ini>".
/* To Get Data from the ini file */
get-key-value "<section name>" key "<key name>" value vcCharacter.
/* To write data into the ini file */
put-key-value "<section name>" key "<key name>" value "<some character value>".
/* To unload the ini file */
unload "<ini file name without the .ini>" no-error.