Marcos Alves Well-Known Member Licensed User Longtime User Mar 17, 2021 #1 Hello all, is there any resource similar to B4A ProgressDialog when using B4XPages? Thanks!
Erel B4X founder Staff member Licensed User Longtime User Mar 18, 2021 #2 It is simple to create such dialog with B4XDialog, however it is also simple to do something like: B4X: Sub ShowProgressDialog (Text As String) #if B4A ProgressDialogShow2(Text, False) #Else If B4i hud.ProgressDialogShow(Text) #End If End Sub With iHud library. Upvote 0
It is simple to create such dialog with B4XDialog, however it is also simple to do something like: B4X: Sub ShowProgressDialog (Text As String) #if B4A ProgressDialogShow2(Text, False) #Else If B4i hud.ProgressDialogShow(Text) #End If End Sub With iHud library.
Marcos Alves Well-Known Member Licensed User Longtime User Mar 18, 2021 #3 Erel said: It is simple to create such dialog with B4XDialog, however it is also simple to do something like: B4X: Sub ShowProgressDialog (Text As String) #if B4A ProgressDialogShow2(Text, False) #Else If B4i hud.ProgressDialogShow(Text) #End If End Sub With iHud library. Click to expand... Thanks @Erel ? Upvote 0
Erel said: It is simple to create such dialog with B4XDialog, however it is also simple to do something like: B4X: Sub ShowProgressDialog (Text As String) #if B4A ProgressDialogShow2(Text, False) #Else If B4i hud.ProgressDialogShow(Text) #End If End Sub With iHud library. Click to expand... Thanks @Erel ?