| Platform: | ArcPad |
| Task: | Create and Use Session Variables |
| Discussion: | Session variables are variables that persist through the life of an application. They are good places to store information that you may need to collect once and then use as default data collection values as points are collected. |
| Example: | 'Set Session Variables
Application.UserProperties ("SessionObserver") = Applet.Forms("frmStartSurvey").Pages("pgSurveyDetails").Controls("cboObserver").Value
'retrieve session variable
msgbox( Application.UserProperties ("SessionObserver")) |