-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.bas
More file actions
57 lines (39 loc) · 1015 Bytes
/
index.bas
File metadata and controls
57 lines (39 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
B4A=true
Group=Default Group\View
ModulesStructureVersion=1
Type=Activity
Version=12
@EndOfDesignText@
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: False
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Private tbHost As TabHost
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("index")
' Add tabs
addTabs
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Private Sub tbHost_TabChanged
End Sub
Private Sub tbHost_Click
End Sub
Private Sub tbHost_LongClick
End Sub
Sub addTabs
'tbHost.AddTab("Login", Null)
tbHost.AddTab("Register", "register")
End Sub