bskotu555 Active Member May 4, 2025 #1 B4A: if MsgboxAsync("The new version is in place. Should we proceed with installation?","Tips")=true then
B4A: if MsgboxAsync("The new version is in place. Should we proceed with installation?","Tips")=true then
Erel B4X founder Staff member Licensed User Longtime User May 4, 2025 #2 You should use XUI.MsgboxAsync2: B4X: Dim sf As Object = xui.Msgbox2Async("Delete file?", "Title", "Yes", "Cancel", "No", Null) Wait For (sf) Msgbox_Result (Result As Int) If Result = xui.DialogResponse_Positive Then Log("Deleted!!!") End If Upvote 0
You should use XUI.MsgboxAsync2: B4X: Dim sf As Object = xui.Msgbox2Async("Delete file?", "Title", "Yes", "Cancel", "No", Null) Wait For (sf) Msgbox_Result (Result As Int) If Result = xui.DialogResponse_Positive Then Log("Deleted!!!") End If