// Remov Space Bar while typing in Text field
public void textChange()
{
str text;
int len;
text = TextFIeld.valueStr();
len = strLen(text);
super();
if(strLen(text) > 0)
{
if(strnFind(text, " ",1,len) >= 0)
{
strdel(text,len-1,1);
TextFIeld.text(text);
}
}
}
public void textChange()
{
str text;
int len;
text = TextFIeld.valueStr();
len = strLen(text);
super();
if(strLen(text) > 0)
{
if(strnFind(text, " ",1,len) >= 0)
{
strdel(text,len-1,1);
TextFIeld.text(text);
}
}
}
No comments:
Post a Comment