This displays the db column 'Name' on a Label view
How would the same content be displayed on a Label in a Scrollview?
thanks for all references.
B4X:
Sub Globals
Private descripz As Label
End Sub
B4X:
Sub maincPic_LongClick
descripzPic.Bitmap = ri.CreateBitmap(LoadBitmap(File.DirDefaultExternal,"Picture.jpg"))
Dim desCur As Cursor = SQL1.ExecQuery("SELECT Name FROM MyTable WHERE _id = " & lstRowIDs.Get(pos))
desCur.Position = 0
descripz.Text = (desCur.GetString("Name"))
End Sub
thanks for all references.