Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

dialog programming query

Former Member
0 Likes
593

When we are designing Logon screen how can I handle password.

Such that even if we enter it should take only *’s.

Urgent plz??????

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
579

Check out the below related thread

Regards,

Santosh

4 REPLIES 4
Read only

Former Member
0 Likes
580

Check out the below related thread

Regards,

Santosh

Read only

0 Likes
579

Dear santhosh

i am designing a logon screen in which what ever the password that i enter should be in *'s.

it should not be displayed but it should match with the data that i store it in a master table.

Read only

0 Likes
579

Hi,

Do the following steps to get the password field always shows only *'s.

1. Go to your log on screen layout.

2. Double click on your password field that would open field attribute window.

3. In the field attribute window, click Display tabstrip on the lower part of window.

4. In the Display tarstrip click on the Invisible check box this will fulfill your requirement.

Regards,

Yellappa.

Read only

Former Member
0 Likes
579

hi,

just try using the code.

in the PBO module.

loop at screen.

check screen-name eq 'ZEMPDETAILS-PASSWORD'.

move: 1 to screen-invisible.

endloop.

in the PAI module .

you validate it.