ERROR:
when an error occurs. Possible error conditions include:"DELETE:" or
"ALL:".
.0
is set to n, the number of names returned,
and the names are returned in
stem.1 to
stem.n.
/*** Save the user entered name under the key "NAME" of *****
**** the application "MYAPP". ****/
pull name .
call SysIni , "MYAPP", "NAME", name /* Save the value */
say SysIni(, "MYAPP", "NAME") /* Query the value */
call SysIni , "MYAPP" /* Delete all MYAPP info */
exit
/**** Type all WIN.INI file information to the screen *****/
call SysIni "WIN.INI", "All:", "Apps."
if Result \= "ERROR:" then
do i = 1 to Apps.0
call SysIni "WIN.INI", Apps.i, "All:", "Keys"
if Result \= "ERROR:" then
do j=1 to Keys.0
val = SysIni("WIN.INI", Apps.i, Keys.j)
say left(Apps.i, 20) left(Keys.j, 20),
"Len=x"Left(d2x(length(val)),4) left(val, 20)
end
end
exit