Hi.
I've created new toolbar(as a form) and I want it to autorun after logging to axapta.
I've modified startupPost method in info class:
/*
No SYS code must exist in this method
*/
void startupPost()
{
;
new MenuFunction(menuitemDisplayStr(ToolBarMenuItem), MenuItemType::Display).run();
}
And it works... but only for me. For another system user it works only when they use fat client (2tier) but not on thin client(3tier).
Any ideas what should I do?
*This post is locked for comments