Sql test initialized (label)

sigster

Active Member
Licensed User
Longtime User
Hi

I am using Basic4android for first time I am trying sample from the forum
I get this error initialized (label)

I have DetailLabel.Text in the main.bal

I run the sample first with out the code and the form do it change anything ?
to have the code in Activity_Create(FirstTime

Regards
Sigster


B4X:
Sub Process_Globals

            Dim xSQL As SQL
            Dim xCursor As Cursor
            
End Sub

Sub Globals

      Dim DetailLabel As Label
      Dim BackButton As Button   
      Dim NextButton As Button
            Dim Counter As Int
            
            Dim RecordsList As List

End Sub

Sub Activity_Create(FirstTime As Boolean)
    

          Activity.LoadLayout("Main")
            
            RecordsList.Initialize
            
            
            If File.Exists(File.DirDefaultExternal, "test.db") = False Then

               File.Copy(File.DirAssets, "test.db", File.DirDefaultExternal, "test.db")
                     
            End If

            If FirstTime Then

       xSQL.Initialize(File.DirDefaultExternal, "test.db", True)
                     
            End If   
              
            DetailLabel.Text = "Number of records: " & xSQL.ExecQuerySingleResult("SELECT count(*) FROM Records")
            

End Sub
 

sigster

Active Member
Licensed User
Longtime User
Hi

The Event Name was DetailLabel but Name was label1 so I am finish to fix this thanks !

Regards
Sigster
 
Upvote 0
Top