Italian Problema MsgboxAsync

Fulvio75

Well-Known Member
Licensed User
Ciao in un'applicazione ho inserito delle MsgboxAsync dove non è richiesto il wait for Msgbox_Result
se non inserisco quest'ultimo l'app va in crash, il log dice:

java.lang.Exception: Sub msgbox_result signature does not match expected signature.
class anywheresoftware.b4a.pc.RemoteObject, class java.lang.Integer,

perchè?
 

Sagenut

Expert
Licensed User
Longtime User
Se non lo inserisci l'app proseguirà il suo flusso anche mentre è visualizzato il dialog.
Per attendere la sua chiusura devi usare
B4X:
Wait For Msgbox_Result (Result As Int)
 

Star-Dust

Expert
Licensed User
Longtime User
Non è richiesto se non metti il Wait For. Ma se attendi la risposta con il Wait For è uguale a Msgbox2Async
 

Fulvio75

Well-Known Member
Licensed User
Forse non mi sono spiegato bene, il problema è che se non metto wait for va in crash e mi da l'errore
 

Star-Dust

Expert
Licensed User
Longtime User
Il framwork non è perfetto
 

Fulvio75

Well-Known Member
Licensed User
Non devo attendere ma se non metto wait for msgbox_result va in crash l'applicazione leggi l'inizio del post
 

Fulvio75

Well-Known Member
Licensed User
Ma se non devi attendere, non è più un msgbox, è un toast! (Vedi mio post precedente)
Voglio tenere la grafica msgbox ma purtroppo in questa applicazione non funziona senza wait for e voglio capire perché
 

LucaMs

Expert
Licensed User
Longtime User
Comunque:
B4X:
Private Sub Button1_Click
    xui.MsgboxAsync("Messaggio", "Titolo")
End Sub
in B4J funziona senza problemi, senza Wait For (suppongo sia altrettanto in B4A).

L'attesa della pressione del tasto c'è per forza, non essendo un toast; quello che non ti interessa è l'esisto, la risposta dell'utente, che però c'è solo con la Msgbox2Async.
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…