ChangeForm

From NSB App Studio
Revision as of 14:02, 27 February 2013 by Ghenne (talk | contribs) (→‎Description)
Jump to navigation Jump to search

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.id
End Function

Output

(msgbox showing "Old Form Hidden")

(msgbox showing "Show form Form2")

Related Items

Form