first method called when open ax

pls help me on finding first method called when we open ax.

Hi,

Probably this method (startupPost) would be helpful to you:

\Classes\Application\startupPost

Hi,

the first method called while opening ax is startup() method in Application class…

We cant override this method…

instead to write any logic, write in startuppost() method which is called from startup() method…

\Classes\Application\startup()

Thnks, can u also help me how to get the record from 1st form to 2nd form.

Hi,

In the second form you can use args and retrieve the first form highlighted record.

something like:

if(element.args().dataset() == custtable)

{

custTab = element.args().record(); // custTab is the buffer which holds the record from the first form

}

Hope you are looking for above code…