[Axapta-Knowledge-Village] Re: Autostart form when starting Axapta

2010-01-22 Thread surfing2alien
: Hi, perhaps http://gurudynamicsax.spaces.live.com/Blog/cns!F6C101CEB694FB4E!190.entry can help you. best regards Michael From: surfing2alien Sent: Thursday, January 21, 2010 3:42 PM To: Axapta-Knowledge-Village@yahoogroups.com Subject: [Axapta-Knowledge-Village] Autostart

[Axapta-Knowledge-Village] Re: Autostart form when starting Axapta

2010-01-22 Thread surfing2alien
can try following in \Classes\Application\startupPost (3.0 it works) if (curUserId() == myUser) { args.name(formstr(custTable)); fr = classFactory.formRunClass(args); fr.init(); fr.run(); fr.detach(); } From: surfing2alien Sent

[Axapta-Knowledge-Village] Autostart form when starting Axapta

2010-01-21 Thread surfing2alien
Hi, I want to start a form automatically when Axapta starts, for some computers. the login is already automatic, now I need to open a specific form automatic. Can somebody tell me how?