It's hard to figure out but I want to make a simple xclv that had all the basic SQLite functions such as Add,modify,delete etc.
would be great to get a simple source codes or any example for reference
here is my xlcv code
I'm sorry I'm really confused with xlcv
would be great to get a simple source codes or any example for reference
here is my xlcv code
I'm sorry I'm really confused with xlcv
code:
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("layout1")
Dim xui As XUI
For i = 0 To 10
Dim p As B4XView = xui.CreatePanel("")
p.SetLayoutAnimated(100,0,0,100%x,40dip)
p.LoadLayout("item")
Label1.Text = " Item numer: " & i
btn.Text = i
xclv.Add(p,i)
Next
End Sub