NSBCurrentForm: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "NSBCurrentForm == Description == NSBCurrentForm returns a reference to the current form. It is set when the app starts, and is updated by the ChangeForm function. == Ex...")
 
Line 2: Line 2:


== Description ==
== Description ==
'''In AppStudio 5, NSBCurrentForm has been replaced by NSB.currentForm.'''


NSBCurrentForm returns a reference to the current form. It is set when the app starts, and is updated by the [[ChangeForm]] function.
NSBCurrentForm returns a reference to the current form. It is set when the app starts, and is updated by the [[ChangeForm]] function.

Revision as of 14:50, 6 April 2015

NSBCurrentForm

Description

In AppStudio 5, NSBCurrentForm has been replaced by NSB.currentForm.

NSBCurrentForm returns a reference to the current form. It is set when the app starts, and is updated by the ChangeForm function.

Example

Rem NSBCurrentForm Example
Print "The current form id is " & NSBCurrentForm.id

Output

The current form id is Form1