Android Question Please Help!!

aomas98

Member
Licensed User
Longtime User
I am Using API 14 and jdk1.7.0_01.
"[Application Name] has stop." error Message

i got an error msg after i click a button this is my Code:

Module1:
Under Click Event

Sub btnQuiz_Click
CallSubDelayed2(QuizModule,"ShowTitle","Hello")
End Sub

Module2:
Sub Process_Globals
Dim SQL As SQL
End Sub
Sub Globals
Dim btnQuiz As Button
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("ModuleQuiz")
'If SQL.IsInitialized = False Then
' SQL.Initialize(File.DirInternal,"quiz.db", False)
' End If
End Sub
Sub ShowTitle(Title As String)
Activity.Title = Title
End Sub
 

aomas98

Member
Licensed User
Longtime User
this the message
 

Attachments

  • Untitled.png
    Untitled.png
    175.4 KB · Views: 118
Upvote 0
Top