Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

prop:mask

Status
Not open for further replies.

aldabic

Programmer
Sep 10, 2003
3
RS
Can someone please, tell me, how to force entru field to accept formatized data. I am using Clarion 5.5 EE. I know how to make all controls on form window behave like this,(Entry patterns check box), but I don't know how to force one field to accept only characters specified in "pictures" field??? MyEntry{prop:mask} didn't work...
 
Hi,

If you use MASK as aproperty of the window then it works fine. Also for the entry pictures have a look at key in paterns in the help.

This example work fine (a number followed by a capital letter.):

MyWindow WINDOW('Caption'),AT(,,260,100),GRAY,MASK
ENTRY(@K#^K),AT(116,33,60,10),USE(TheData)
END

Valery.
 
Thank you, that realy worked! I owe you one.


Alexander
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top