Hi RWorker,
Can you try below this code in onAfterChange event of that field.
var nodeValue = XDocument.DOM.selectSingleNode(“XPath of your field”).text;
if(nodeValue >100 && nodeValue < 1000)
{
var focusFieldNode = XDocument.DOM.selectSingleNode(“XPath of where do you
want to set the node”).text;
XDocument.View.SelectText(focusFieldNode, 1);
}
Hope this helps you.

Signature
Shiva
http://www.ggktech.com
> I am trying to automatically tab (go to the next control) after a 3 digit
> area code has been entered.
RWorker - 07 Sep 2007 16:22 GMT
Thanks, I will try it
> Hi RWorker,
> Can you try below this code in onAfterChange event of that field.
[quoted text clipped - 12 lines]
> > I am trying to automatically tab (go to the next control) after a 3 digit
> > area code has been entered.