ChangeForm: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "CHANGEFORM(''newform'') '''Description''' CHANGEFORM hides the current form and shows newForm. When the current form is hidden, its onhide() function is called. When the new...")
 
No edit summary
Line 11: Line 11:
REM ChangeForm sample call
REM ChangeForm sample call


ChangeForm(Form2)                 'go to next form without transition
ChangeForm(Form2)             'go to next form without transition


Function Form1_onhide()
Function Form1_onhide()

Revision as of 03:57, 29 June 2012

CHANGEFORM(newform)

Description

CHANGEFORM hides the current form and shows newForm. When the current form is hidden, its onhide() function is called. When the new form shows, its onshow() function is called. The global variable NSBCurrentForm is set to newForm.

Example


REM ChangeForm sample call

ChangeForm(Form2)             'go to next form without transition

Function Form1_onhide()
  MsgBox "Old Form Hidden"
End Function

Function Form2_onshow()
  Msgbox "Show form " & NSBCurrentForm
End Function

Output

Lowercase = a
Uppercase = A

Related Items

FORM