B4J Question how to close a form

raphipps2002

Active Member
Licensed User
Longtime User
I can create a DB with mysql via a remote host ;)....but I cant seem to close an open window using a button or via the menu! :(

In this sub i see there is a FormSD.close method but how can I do this via another sub

B4X:
Dim FormSD As Form
'
    Try
            FormSD.Initialize("FormSystem", 600, 400)
            FormSD.RootPane.LoadLayout("laySystemData") 'Load the layout file.   
            FormSD.Show
           
           
     
Catch
        Log(LastException)
    End Try
 
Top