Monday, November 27, 2017

AX - How add (next) row to StringEdit control

Used for example for logs.
  1. Add StringEdit control to form.
  2. Set name and set Autodeclaration to Yes.
  3. Set Multiline to Yes.
void AddText( str _sValue ) {
  EOutput.text( EOutput.text() + _sValue + num2char(10) );
}

No comments:

Post a Comment