Italian Msgbox con 3+1 scelte

LucaMs

Expert
Licensed User
Longtime User
Nessuno ti impedisce di scrivere "UNO", "DUE", "TRE" al posto di "SI", "NO", "ANNULLA".

B4X:
    ' L'ultimo parametro, True, consente di chiudere la dialog senza l'obbligo di scelta tra i 3 tasti.   
    Msgbox2Async("Question?", "Title", "UNO", "DUE", "TRE", Null, True)
    Wait For Msgbox_Result (Result As Int)
    Select Result
        Case DialogResponse.POSITIVE ' "UNO"
        Case DialogResponse.CANCEL ' "DUE"
        Case DialogResponse.NEGATIVE ' "TRE"
    End Select
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…