28 Sept 2013

Set focus on specific control when opening form

To set the focus on specific control when form is open, you need to
override the firstField() method of the form and
set your desired control after super() call.



{
;
super(_flags);
desiredControlName.setFocus();
}


public void firstField(int _flags=1)

No comments:

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...