I have been provided with the following code but find that it only tabs when numbers entered:
function AutoTab(doc, event, cNext)
{
// Call the built-in routine to allow numbers only.
AFNumber_Keystroke(0, 0, 0, 0, "", true);
// If we've filled in the field completely, jump to the next one.
if (event.rc && AFMergeChange(event).length == event.target.charLimit)
doc.getField(cNext).setFocus();
What I need is for the auto tab to function when any character is entered. I am not fimiliar with java but see that it is calling a numbers only routine when I need a character routine.
I also have this"AutoTab(this, event, "MemIDB4");" in the properties under format and custom keystroke script.
Thanks for the help!
George Kaiser