\n\nReference Parameter\n\n
Description
The return values of functions and properties of objects cannot be
directly used as reference parameters for functions.
Workaround
Follow the steps below to work around this issue:
Step 1 - Create a v...
Description
Passing Menu object as a reference parameter is unsupported.
Workaround
Pass the Menu object by value or as read-only instead of by
reference. The reason is, when passing by value or as read-only, if
you change the properties of th...
Description
Passing DataWindows by reference is unsupported.
Workaround
Define an instance variable and set its value as the data retrieved
from the DataWindow, then pass this variable by reference to the
function.
The same workaround shou...
Description
Repetitively referring objects as arguments for a function is
unsupported. Use the following workaround and example to change it
into a supported format.
Workaround
Assign the repetitively referenced object to multiple different
va...
If you use ''Try..catch'' clause in your application, you don't need
to worry about the exception handling of it on the web, because:
1. Appeon offers built-in exception handling mechanism to avoid
serious problems occurring on the end-user's side. ...