Actually my SalesOrder form is too heavy.
I want to check the time taken to load it on different servers.
I need to display this time in the status bar.
I don't know how to display this in the status bar, but why not you use a custom Progress screen? I suggest you open it before the call of any stmt in init() and close after the call of all stmts in run().
What i have done is i have calculated the current time before the Super() of init and after the Super() of run and found the difference and after that i have set the focus SalesId field and set its help text.
SalesTable_SalesIdAdvanced.setFocus();
SalesTable_SalesIdAdvanced.helpText("Time taken to load the form is " + time );
This way i have been able to get this info in the status bar.
Comments
what form are you having trouble with?
http://www.BiloBeauty.com
http://www.autismspeaks.org
Actually my SalesOrder form is too heavy.
I want to check the time taken to load it on different servers.
I need to display this time in the status bar.
Thanks
http://www.BiloBeauty.com
http://www.autismspeaks.org
I figured it out myself.
I don't know how to display this in the status bar, but why not you use a custom Progress screen? I suggest you open it before the call of any stmt in init() and close after the call of all stmts in run().
Hth,
Ciprian
Ciprian Dudau
Axapta Developer
What i have done is i have calculated the current time before the Super() of init and after the Super() of run and found the difference and after that i have set the focus SalesId field and set its help text.
SalesTable_SalesIdAdvanced.setFocus();
SalesTable_SalesIdAdvanced.helpText("Time taken to load the form is " + time );
This way i have been able to get this info in the status bar.
Thanks
Rashi
Ciprian Dudau
Axapta Developer