You can use the following common parameters in your event code:
pageObject
pageObject
an RunnerPage class object that represents a current page. For more information, see RunnerPage class.
Example
' Get the current record and display the Make and Model fields' values
set data = pageObject.getCurrentRecord()
response.write data("Make") & " " & data("Model")
values array
values
an array with the field values from an Add/Edit form.
Example
' clear the Comment field
values("Comment")=""
Note: If the field was assigned an alias in the SQL query, then the values array gets the alias instead of the field name from the database.
E.g., if you have an SQL query SELECT salesrep_id AS Inv_Salesrep ..., you should use values["Inv_Salesrep"].
keys
keys
an array with the key columns.
Example
values("FileName")=keys("ID") & ".jpg"
Other useful functions and parameters
templatefile
the name of the template file being displayed.
xt
a template engine object. Use xt->assign(name, val) to assign a value val to the variable name.
Example:
Before display event
dim str
str = "This message"
xt.assign "message",str
See also: