Yes! In the program directory of Enterprise Dynamics a file named ED.app exists. This file is executed first and contains the code to initiate the startup process.
If you look at this file you can see that it contains something like this:
Code: Select all
{ load suite }
if(1, {CmdLineOption([chooseApp]), }
t := getfileopen(pdir([apps\*.app]),[E.D. Applications (*.app)| *.app]),
if(CompareText(CmdLineOption([suite]), []),
t := pdir([apps\logistics suite.app]),
t := pdir(concat([apps\], CmdLineOption([suite]), [.app]))
)
);
if(not(CompareText(t, [])),
execfile(t),
exit
);
Code: Select all
t := pdir([apps\logistics suite.app]);