I want to use a multiline textbox and show the Done button to allow the keyboard to be closed after an entry.
The following code will not show the Done button unless I remove the SingleLine statement. Neither order of the statements work. How can I have both?
Sub Activity_Create(FirstTime As Boolean)
Dim Edt As EditText
Edt.Initialize("Edt")
Edt.ForceDoneButton=True
Edt.SingleLine = False
Activity.AddView(Edt,10%x,10%y,50%x,20%y)
End Sub
The following code will not show the Done button unless I remove the SingleLine statement. Neither order of the statements work. How can I have both?
Sub Activity_Create(FirstTime As Boolean)
Dim Edt As EditText
Edt.Initialize("Edt")
Edt.ForceDoneButton=True
Edt.SingleLine = False
Activity.AddView(Edt,10%x,10%y,50%x,20%y)
End Sub