Sub Process_Globals
Dim nv As NavigationController
End Sub
Public Sub Show
If (page_showCategory.IsInitialized = False) Then
nv.Initialize("nv")
Main.App.KeyController = nv
Main.NavControl = nv
page_showCategory.Initialize("frm_showcategory")
main_sv.Panel.LoadLayout("frm_showcategory")
Main.NavControl.ShowPage(page_showCategory)
page_showCategory.RootPanel.LoadLayout("frm_showcategory_sv")
End If
End sub
Sub btn_back_Click
nv.RemoveCurrentPage
Main.NavControl.RemoveCurrentPage
End Sub