About Main Menu form 330 in attain

as far as i know form 330(main menu) is called when we start Navision attain…But from where this form is called???also tell me is there any other codeunit or form that is called before this…can anyone tell me the exact sequence how Navision is started Best regards anoop verma

Check CU 1 / CompanyOpen:

 
IF USERID <> '' THEN
  IF UserSetup.GET(USERID) THEN
    MainMenuID := UserSetup."Main Menu ID";

IF MainMenuID = 0 THEN
  MainMenuID := FORM::"Main Menu";
EXIT(MainMenuID);

bye Andre

Hi, Please check the StartLoign trigger of codeunit-1 i.e. Application Management Codeunit.

Thankyou very much…now i am clear best regards anoop