Hi there,
I would like the cursor to start in the ItemId field of the first sales line when I open up the SalesTable form. In firstField(), I have this:
public void firstField(int _flags=1)
{
super(_flags);
this.nextGroup();
}
My nextGroup() method looks like this:
void nextGroup()
{
info('In nextGroup()');
if (!SalesLine::exist(salesTable.SalesId))
{
salesLine_ds.create();
}
salesLine_ItemId.setFocus();
}
When I open up the SalesTable form, I get the info message, then the cursor goes to the ItemId field, BUT THEN, the cursor goes to a field in the header.
How do I find out what is moving the cursor up there?
Thanks,
Tom
*This post is locked for comments
I have the same question (0)