Have this textbox event code:
The beep is not generated by DoProcedure (tested with a Msgbox after DoProcedure) and not code runs after this event code.
So what generates this beep or this just the normal behaviour with a Return
key press in an event?
It doesn't happen on the device.
RBS
B4X:
Sub txtSearch_KeyPress (key)
If key = Chr(13) Then
DoProcedure
'for some reason there will be a beep here
End If
End Sub
The beep is not generated by DoProcedure (tested with a Msgbox after DoProcedure) and not code runs after this event code.
So what generates this beep or this just the normal behaviour with a Return
key press in an event?
It doesn't happen on the device.
RBS