As i know, no; but you can make a trick.
First set visible property of your numeric textbox to "No". Then insert a "stringEdit" on form or grid where your numeric box is included. In modified method of stringEdit set value of numeric to value of stringEdit(!!! autodeclaration property must be yes).
void modified()
{
boolean ret;ret = super();
realedit.realValue(str2num(stringedit.text()));
// !!! realedit(your numeric box) autodeclaration property must be
yes
return ret; }
Be carefull that if user inputs a non numeric value an error occures.
Good luck.
Cenk INCE
Yahoo! Groups Sponsor ADVERTISEMENT
click here
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

