I'm using the below code for an Edit Text field and that works fine. Is there something like Input Type for content stored in a label or spinner?
edtEvent.InputType = edtEvent.INPUT_TYPE_TEXT
edtEvent.InputType = edtEvent.INPUT_TYPE_TEXT
Save the text to a file ? or SQL database ?I want to be able to save text from a label and spinner
I need to save it to a database. Have it displayed in a web view table then exported as a CSV.Save the text to a file ? or SQL database ?
I want to be able to save text from a label
Dim Label1 As Label
Dim SavedLabelText As String
SavedLabelText = Label1.Text
and spinner
Dim Spinner1 As Spinner
Dim SavedSpinnerText As String
If Spinner1.SelectedIndex <> -1 Then
SavedSpinnerText = Spinner1.SelectedItem
Else
SavedSpinnerText = "Nothing selected (yet)"
End If
edtIn.InputType = edtIn.INPUT_TYPE_TEXT
edtOut.InputType = edtOut.INPUT_TYPE_TEXT