DarkWolfalpha Member Apr 6, 2020 #1 I need a ProgressDialogShow for Webview How I can Use ProgressDialogShow ? If Webview Load...ProgressDialogShow = Show elso Webview Show...ProgressDialogShow = Not Show
I need a ProgressDialogShow for Webview How I can Use ProgressDialogShow ? If Webview Load...ProgressDialogShow = Show elso Webview Show...ProgressDialogShow = Not Show
JohnC Expert Licensed User Longtime User Apr 6, 2020 #2 B4X: ProgressDialogShow("Loading Page...") wv.loadurl(URL) Sub wv_PageFinished (Url As String) ProgressDialogHide End Sub Upvote 0
B4X: ProgressDialogShow("Loading Page...") wv.loadurl(URL) Sub wv_PageFinished (Url As String) ProgressDialogHide End Sub
DarkWolfalpha Member Apr 7, 2020 #3 JohnC said: B4X: ProgressDialogShow("Loading Page...") wv.loadurl(URL) Sub wv_PageFinished (Url As String) ProgressDialogHide End Sub Click to expand... Thanks a lot???????? Upvote 0
JohnC said: B4X: ProgressDialogShow("Loading Page...") wv.loadurl(URL) Sub wv_PageFinished (Url As String) ProgressDialogHide End Sub Click to expand... Thanks a lot????????
Erel B4X founder Staff member Licensed User Longtime User Apr 8, 2020 #4 This can also be implemented like this: B4X: ProgressDialogShow("Loading Page...") wv.loadurl(URL) Wait For wv_PageFinished (Url As String) ProgressDialogHide Upvote 0
This can also be implemented like this: B4X: ProgressDialogShow("Loading Page...") wv.loadurl(URL) Wait For wv_PageFinished (Url As String) ProgressDialogHide
DarkWolfalpha Member Apr 8, 2020 #5 Erel said: This can also be implemented like this: B4X: ProgressDialogShow("Loading Page...") wv.loadurl(URL) Wait For wv_PageFinished (Url As String) ProgressDialogHide Click to expand... ??? Thank you Upvote 0
Erel said: This can also be implemented like this: B4X: ProgressDialogShow("Loading Page...") wv.loadurl(URL) Wait For wv_PageFinished (Url As String) ProgressDialogHide Click to expand... ??? Thank you