Thursday 2 January 2014

How to set position of dialog box in axappta




To set position of dialog box in Axapta which used in form, report and classes.

Dialog dialogbox = new dialog(“Testing Dialogbox”);

;

Dialogbox.dialogForm().form().design().left(50,5);

Dialogbox.dialogForm().form().design().top(50,5);

Dialogbox.run();

No comments:

Post a Comment