Sub Activity_Create(FirstTime As Boolean)
If File.Exists(File.DirDefaultExternal, "YOURAPPNAMEEULA.txt") = False Then
If Msgbox2("This software uses the internet and usage fees may apply, do you want to allow the connection?", "Internet Usage", "Yes - I Accept", "", "No", Null) = DialogResponse.POSITIVE Then
File.OpenOutput(File.DirDefaultExternal, "YOURAPPNAMEEULA.txt", False)
Else
Activity.Finish
End If
End If
'app start functions here
End Sub