|
|
| Author |
Message |
Pragati Soni
New User
Joined: 18 Jan 2008 Posts: 10 Location: India
|
|
|
|
I need to give a field in the panel and need to type in the password. I need to make it in such a way that the values I give as input doesn't get displayed to the user.
Password==>******
I used PAD but it is not solving any purpose as it is only for initialization. |
|
| Back to top |
|
 |
References
|
Posted: Mon Jun 02, 2008 5:38 pm Post subject: Re: How to give a field in panel, takes a value doesnt display |
 |
|
|
 |
Moved: Mon Jun 02, 2008 5:38 pm by superk From CLIST & REXX to TSO/ISPF |
cpuhawg
Active User
Joined: 14 Jun 2006 Posts: 271 Location: Jacksonville, FL
|
|
|
|
An INTENSITY of NON will do it.
| Code: |
+ TYPE(INPUT) INTENS(NON) PAD(' ') JUST(LEFT) CAPS(ON)
|
It won't show asterisks, but the password will not be displayed. |
|
| Back to top |
|
 |
|
|