ADDIN.VARIABLES Function

Syntax

P Variables()

Description

Addin variables are useful for sharing information between different Alpha Anywhere databases. They persist for the duration of the Alpha Anywhere program session.

Example

The following script shows how to dimension an addin variable named aiv.

DIM aiv as P
DIM aiv.amt as N
DIM aiv.myvar as P
aiv = addin.variables()
aiv.amt = 12
aiv.myvar.firstname = "aaron"
aiv.myvar.lastname = "brown"

See Also