To set position of dialog box in axapta which used in form ,report and classes.
Dialog dialog1= new Dialog("Test Dialog");
;
dialog1.dialogForm().form().design().left(48, 4);
dialog1.dialogForm().form().design().top(240, 3);
dialog1.run();