B4i Question MsgBox2 - moore_it    Sep 25, 2017 Hi all.
it's possible to get the msgbox2 title in MsgBox2_Click(ButtonText as string) event ?
Thanks in advice... Bug? [solved] MsgBox2 Message and Title positions inverted - klaus    Nov 19, 2014 The positions of Message and Tiltle are different in MsgBox and MsgBox2.
MsgBox(Message, Tiltle)
MsgBox(EventName, Tiltle, Message, Buttons)
In B4A its Message, Tiltle in both !
This might be confusing.... B4i Question Problem with Msgbox2 - susu    Aug 10, 2015 Hi,
I faced a strange problem with Msgbox2 and Pages. I used SideMenu, custom Navigation bar in my app. Everything was fine until I added some Msgbox2. It seems the Pages loaded again and again when... B4i Question Msgbox2/waitfor doesn't fire in sub app_background - Erel (first post)    Aug 2, 2017 That's true. You cannot prevent the user from closing the app.... Bug? msgbox2 tips code error - Erel (first post)    Nov 17, 2016 You are both correct. It is fixed for the next version.... B4i Question problem with iSideMenu and msgbox2 - Ju Yang (first post)    Jun 20, 2016 thank you very much:)... B4i Question ToastMessage display time variability when used with Msgbox2 - mdehrnsb (first post)    Mar 16, 2016 implementing:
Sub Button1_Click
Msgbox2("SetLevelConfirmation", "Message"... B4i Question Msgbox2 doesn't call the event - Alessandra Pellegri (first post)    Sep 3, 2015 Thank you :) I was going mad :)... B4i Question Wait for accept to receive notifications (RegisterUserNotification) - Mike1970    Mar 19, 2020 Hi everyone, there is a way to wait for the user to click on the notification dialog, so the app stops to do things? Like: MsgBox2("Msg", "Body", "Title", Array("Yes", "No")) Wait For Msg_Click (ButtonText As String) If ButtonText = "Yes" Then 'things' End If 90289 thanks :D... B4i Code Snippet Msgbox with timeout - Erel    May 31, 2018   (4 reactions) A Msgbox that disappears automatically after the set timeout. The result is "Cancel". Sub ShowMessageWithTimeout(text As String, timeout As Int) As ResumableSub Dim sf As Object = Msgbox2("Msg", text, "Title", Array ("Yes", "No", "Cancel")) Dim cancel(1) As Boolean CheckForTimeout(sf, timeout, cancel) Wait For Msg_Click....RunMethod("dismissWithClickedButtonIndex:animated:", Array(-1, True)) CallSubDelayed2(Me... Page: 1   2   3   4   5   6   7   |