B4A Tutorial [B4X] [XUI] Msgbox - Erel    Oct 19, 2017   (23 reactions) XUI library v1.4 adds support for asynchronous msgbox dialogs. The API is simple: https://www.b4x.com/basic4android/images/SS-2017-10-19_15.27.39.png xui.MsgboxAsync("Hello", "World") The dialog is not a modal dialog. The code will not stop. MsgboxAsync and Msgbox2Async return an object that c B4A Question Msgbox2 buttons (Msgbox2Async) - klaus (first post)    Jun 03, 2023   (1 reaction) How do you declare the Msgbox2.
In the declaration you have:
Msgbox2Async (Message As CharSequence, Title As CharSequence, Positive As String, Cancel As String, Negative As String, Icon As BitmapWrapper, Cancelable As Boolean)
And the texts displayed in the buttons are those you give in Positive, Ca B4A Question Msgbox2 Creash - hanyelmehy    Oct 01, 2024 can old Msgbox2 make crash on some devices
i get this crash report
Fatal Exception: anywheresoftware.b4a.B4AUncaughtException:
at anywheresoftware.b4a.Msgbox.msgbox(Msgbox.java:189)
at anywheresoftware.b4a.keywords.Common.Msgbox2(Common.java:452)
at students.one.onlineexam.exam B4A Question Best practice Msgbox2Async - Erel (first post)    Dec 06, 2023   (1 reaction) xui.Msgbox2Async. Same feature but is cross platform. B4A Question MsgBox2Async in color? - teddybear (first post)    Nov 21, 2024   (2 reactions) Try this
Dim cs As CSBuilder
cs.Initialize.Color(Colors.LightGray).Append("Hello World!").PopAll
Dim mbas As JavaObject=Msgbox2Async(cs,cs,"o","c","n",Null, True)
Dim cd As ColorDrawable
cd.Initialize(xui.Color_Blue,0)
mbas.RunMethodjo("getWindow",Null).RunMethod("setBackgr B4J Question ShowToastWithReturns - Harris (first post)    Sep 07, 2018   (1 reaction) Also Try Msgbox2: page.Msgbox2("DOWNL","Download the Android Mobile App","Get Device Application","Download","Cancel",False,ABM.MSGBOX_TYPE_QUESTION,False,ABM.MSGBOX_POS_CENTER_CENTER,"") ' then the result code.... Sub page_MsgboxResult(returnName As String, result As String) Dim dirf A B4A Class [B4X] [XUI] AS MsgBox/Dialog - Alexander Stolte    Feb 24, 2024   (38 reactions) LoadLayout (layout As String) As String set the layout for designer LoadLayout2 (p As B4XView) As String set a panel as layout setBottomColor (color As Int) As String setCloseButtonVisible (visible As Boolean) As String gets or sets close button visible state setEnableDrag (enable As Int) As String B4A Question Msgbox ??? - Computersmith64 (first post)    Feb 01, 2020   (1 reaction) Errr - that would be Msgbox2Async... :) But in this case, I think a B4XDialog from XUI Views would be required, as it appears from the OP example that some kind of user input is required. - Colin. B4A Question MsgBox2 text bold/italic - Mahares (first post)    Sep 27, 2021 Use Msgbox2Async along with CSBuilder. Msgbox2 is deprecated. Here is an example:
Msgbox2Async(cs.Initialize.Bold.Color(Colors.Red).append("Confirm ").pop.Typeface(Typeface.CreateNew(Typeface.DEFAULT, _
Typeface.STYLE_ITALIC)).append(CRLF).Append("By clicking yes").PopAll, "Warning", "Yes"," B4A Question MSGBOX with options - JohnC (first post)    Oct 01, 2020   (1 reaction) The MsgBox2 you mentioned is from B4J and it looks like you want to use it because it includes built-in bitmap images like VB6 had.
Unfortunately, B4A does not include built-in icons, so you will have to find an image you like (or use fontawsome/material) characters and convert to BMP and load them Page: 1   2   3   4   5   6   7   Powered by ColBERT |