Skip to main content

Posts

Showing posts from June, 2016

Insert Label by Code in Axapta in any language

To Insert Label by Code in Axapta in any language  you can try below code. This code will show you label code as output in message box. SysLabelEdit SysLabelEdit = new SysLabelEdit(); info(strFmt("%1", SysLabelEdit.labelInsert('En-US', 'Test Label', 'Test Label', SysLabelApplModule::None))); You can try this code to do label creation fast to save your time . I hope this really help you.