App.Homepage
The Homepage application property can be used in conjunction with the OpenWindow application function. It allows the Homepage Mimic to be opened when the OpenWindow script is executed.
Syntax |
App.Homepage |
Description |
The Homepage property returns the Homepage property of the current user. |
Argument |
None. |
Returns |
URL {string}. The Homepage application property returns the address of the home page for the currently logged on user. For a logged on user, this is the homepage that is defined via the user's User Account (on the User Form). For the Guest user, this is the homepage that is defined using the Options window. |
Example:
sHomepage = App.Homepage
App.OpenWindow sHomepage
Where:
- sHomepage is the name of a variable used to store the string that is returned by the App.Homepage function.
- App.Homepage is the function used to return the Homepage of the currently logged on user.
- App.Openwindow is the object being referenced (App.) and the name of the application function being used (OpenWindow).