Ralph Zbrog
New User
Joined: 21 Nov 2009 Posts: 58 Location: California
|
|
|
|
Set the property statically with the AD parameter, as in
INPUT #PSWD (AD=N)
Or set it dynamically with a Control Variable, as in
1 #CV (C)
...
ASSIGN #CV = (AD=N)
...
INPUT #PSWD (CV=#CV)
In the first case, additional attributes may be set with AD. |
|