I want to display data in a text box by retrieving data from the database
Private Sub boxmesage_Click
mdlkoneksi.koneksi
mdlkoneksi.rs = mdlkoneksi.mh.Query("SELECT * FROM jadwalkerja WHERE idkaryawan = '" & Main.idne & "' ")
For i = 0 To mdlkoneksi.rs.RowCount - 1...
I'm using MsgboxAsync because I want the program to continue runing while still displaying a message. But at the same time, if the user did not close it and I use MsgboxAsync again, then I will have a second message on top of the first. Is it possible to somehow track that MsgboxAsync is not yet...
Based on @Erel's code here....
xui.MsgboxAsync & xui.Msgbox2Async don't have a "cancel" method, so trying to use it generates an error: java.lang.RuntimeException: Method: cancel not found in: javafx.scene.control.Alert
Instead, the 'close' or 'hide' methods can be used:
Sub Globals
Dim...
Hay alguna forma de pausar la ejecucion de un programa mientras el usuario no toque el boton 'Ok' de el dialogo MsgboxAsync?
Antes empleaba Msgbox, pero el Id de B4a hace tiempo me recuerda que es mejor emplear MsgboxAsync
Saludos.
When I display a message with xui.MsgboxAsync("text", "title") and then immediately order to close the page with B4XPages.ClosePage(Me) , on Android it works correctly, but on IOS it does not close the page, and when I click a button that I created and has the command to close the page, nothing...
Hi all.
I have a string that has to ne shown in XUI.MsgBoxAsync
Here is a code
Sub Button1_Click
Dim str As String
str=MyText
Log(str)
xui.MsgboxAsync(str, "B4X")
End Sub
Private Sub MyText As String
Dim sb As StringBuilder
sb.Initialize...
Hi all
I'm updating my app and replace all MsgBox that are depreciated to MsgBoxAsync.
I have a problem because MsgBoxAsync is not modal anymore
I have a code for example
Private Sub ApplyServerResponse as Boolean
Dim TransferResult as String
TransferResult=GetParsedResultFromJSON ' Sub that...
Hi Guys
I have a problem with xui.Msgbox2Async() it remains on the page until you click on one of its options (i.e. positive, negative or cancel). I need to remove the message programmatically or certainly remove it when it moves on to the next page.
Dim sf As Object =...
With reference to this thread:
https://www.b4x.com/android/forum/threads/custom-fonts-for-message-boxes.108014/
Which covers how to set a custom font for a Message Box.
Is there a way to also set a custom font for the "OK" button?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.