CONCEAL_DATA [message #606490] |
Fri, 24 January 2014 12:17 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/289788c5c4d2bf860284ff8a61071853?s=64&d=mm&r=g) |
metal_navin
Messages: 21 Registered: February 2013
|
Junior Member |
|
|
Hello all.
I am attempting to conceal a number field in oracle forms using the '*' character.
However, I want to conceal each digit after one second passes.
For example, if I want to conceal the number '12345', when I input the number '1', after one second, the '*' character conceals the '1', and so forth for the '2345' numbers.
So far, I am aware that I can use the below code to conceal, but is my scenario possible using the below code?
SET_ITEM_PROPERTY('item_name', CONCEAL_DATA, PROPERTY_TRUE);
Thank you
|
|
|
Re: CONCEAL_DATA [message #606492 is a reply to message #606490] |
Fri, 24 January 2014 14:02 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](/forum/images/custom_avatars/177954.jpg) |
thelearner
Messages: 133 Registered: April 2013 Location: INDIA
|
Senior Member |
|
|
try with
SET_ITEM_PROPERTY(<your_item>, ECHO, PROPERTY_TRUE);
put it in time loop(
after second set the property SET_ITEM_PROPERTY(<your_item>, ECHO, PROPERTY_FALSE);
may be helpful for you....
If it is successful then post the code once
[Updated on: Fri, 24 January 2014 14:04] Report message to a moderator
|
|
|
|
|
|