Wednesday, June 30, 2010

How to hide/unhide the task pane from code

Small post, with a small job to do: How can we hide or unhide the task pane in Ax from code? (You know, that pane on the right that some love and others hate.)

This small piece of code will do the trick


static void TaskPaneSet(Args _args)
{ boolean visible=true;
;
new xInfo().taskPane().setVisiblity(visible);
}

No comments:

Post a Comment