Is the
configurable in the way of looking ?
Looks like an old WIN3.1 Window
Here is the part i refer to:
B4X:
javax.swing.JOptionPane
Looks like an old WIN3.1 Window
Here is the part i refer to:
B4X:
' Show Messagedialog
' Parameter Message as String
Public Sub showMessage(strMsg As String)
' Define the JavaObject
Dim jo As JavaObject
' Initialize using the Swing Library class JOptionPane
jo.InitializeStatic("javax.swing.JOptionPane")
' Show the message
jo.RunMethod("showMessageDialog", Array As Object(Null, strMsg))
End Sub