19/05/2023: A causa di un errore sono stati cancellati, insieme ad account creati da bot, alcuni account legittimi. Si prega di leggere qui: https://www.gambas-it.org/smf/index.php?topic=9733.0
Public Sub Form_KeyPress() If (Key.Code = Key.Enter) Or (Key.Code = Key.Return) Then Print "aaa" End
Public Sub TextBoxTastiera_KeyPress() If Key.Code = Key.Return Then FMain.RicevoTesto(TextBoxTastiera.Text) Me.Close EndifEnd
Public Sub RicevoTesto(value As String) TextBox1.text = value End
... forse intendeva qualcosa del genere?
... forse intendeva qualcosa del genere?:Supponendo che la textbox della tastiera si chiami TextBoxTastiera e che invece la text box ricevente (TextBox1) sia nella FMain.Codice in form tastiera:Codice: [Seleziona]Public Sub TextBoxTastiera_KeyPress() If Key.Code = Key.Return Then FMain.RicevoTesto(TextBoxTastiera.Text) Me.Close EndifEndCodice in FMain:Codice: [Seleziona]Public Sub RicevoTesto(value As String) TextBox1.text = value End