How to Show Alert message on axapta startup
If you want to show any ax client startup alert then you can put code following way
Open AOT (Ctrl+D) then Go to Info Class
Write following code on StartupPost() Method
If you want to show any ax client startup alert then you can put code following way
Open AOT (Ctrl+D) then Go to Info Class
Write following code on StartupPost() Method
void startupPost()
{
;
box::info("Welcome to Microsoft dynamics axapta Application");
}