NSBCurrentForm: Difference between revisions
Jump to navigation
Jump to search
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
NSB.CurrentForm | |||
== Description == | == Description == | ||
NSB.CurrentForm returns a reference to the current form. It is set when the app starts, and is updated by the [[ChangeForm]] function. | |||
== Example == | == Example == | ||
Line 11: | Line 9: | ||
<pre> | <pre> | ||
Rem NSB.currentForm Example | Rem NSB.currentForm Example | ||
Print "The current form id is " & NSB. | Print "The current form id is " & NSB.currentForm.id | ||
</pre> | </pre> | ||
Latest revision as of 21:41, 20 April 2017
NSB.CurrentForm
Description
NSB.CurrentForm returns a reference to the current form. It is set when the app starts, and is updated by the ChangeForm function.
Example
Rem NSB.currentForm Example Print "The current form id is " & NSB.currentForm.id
Output
The current form id is Form1