New Layers in Dynamics AX 2009
http://blogs.msdn.com/mfp/archive/2008/04/22/new-layers-in-dynamics-ax-2009.aspx
This blog is all about Dynamics AX and X++.Microsoft Dynamics Ax tips and tricks .
Thursday, October 30, 2008
Monday, October 27, 2008
How to update the label and helptext of the RunBase OK and Cancel buttons
The code needs to be put after the super() call in the putToDialog() method.
protected void putToDialog()
{
FormBuildCommandButtonControl commandButton;
;
super();
commandButton = dialog.dialogForm().control("OkButton");
commandButton.text("Done");
}
protected void putToDialog()
{
FormBuildCommandButtonControl commandButton;
;
super();
commandButton = dialog.dialogForm().control("OkButton");
commandButton.text("Done");
}
Subscribe to:
Posts (Atom)