Tuesday, December 3, 2013

Communication Tools In Microsoft Dynamics Ax 2012

There are mainly 4 types of communication tools in dynamics ax 2012 they are,

1. Print

2. Box

3. Info

4. Dialog


PRINT

Pass any datatype in this print method , it will print on the output screen.






BOX

1. Boxes are used to take the defined inputs.
2. For all boxes the base class is 'Box'.
3. All types of box Methods are denoted by static methods inside Box class.
4. Boxes which have yes,no,cancel button then their return type is "Dialogbutton" baseenum.
5. ok , cancel, oncemodal  return type is "Boolean".






Below are the methods that contain in the 'Box' class




INFO

1. Only displays string as a result.
2. for displaying any other type of data we use 'strFmt( )' method to typecast anything to a string.
3. Info does not allow inputs from the user. Its for view purpose only.






DIALOG

1. Any Input to put from a keyboard , and based on data the program to execute then we go for dialog.
2. Its Class Name is 'Dialog'.
3. It is a Class which has more number of static and object classes.





1 comment: