enrique1 Member Licensed User Longtime User Jun 2, 2011 #1 Hi all, I'm trying to develop an application with a WebView and I need to show the loading progress in a ProgressBar. How can I do it?? I was searching in the forum and I don't find anything. I hope don't repeat the thread..! Thanks!
Hi all, I'm trying to develop an application with a WebView and I need to show the loading progress in a ProgressBar. How can I do it?? I was searching in the forum and I don't find anything. I hope don't repeat the thread..! Thanks!
Erel B4X founder Staff member Licensed User Longtime User Jun 3, 2011 #2 The WebView currently doesn't expose the progress information. You can show a cyclic progress bar by setting ProgressBar.Indeterminate to true. Upvote 0
The WebView currently doesn't expose the progress information. You can show a cyclic progress bar by setting ProgressBar.Indeterminate to true.
enrique1 Member Licensed User Longtime User Jun 3, 2011 #3 While? Erel said: The WebView currently doesn't expose the progress information. You can show a cyclic progress bar by setting ProgressBar.Indeterminate to true. Click to expand... Thank you Erel. Now, does exists any method to know if the charged is complete?? I am trying to set ProgressBar.Indeterminate to true inside a while loop. When the charged is complete ,the loop finish and ProgressBar.Indeterminate = false Upvote 0
While? Erel said: The WebView currently doesn't expose the progress information. You can show a cyclic progress bar by setting ProgressBar.Indeterminate to true. Click to expand... Thank you Erel. Now, does exists any method to know if the charged is complete?? I am trying to set ProgressBar.Indeterminate to true inside a while loop. When the charged is complete ,the loop finish and ProgressBar.Indeterminate = false
Erel B4X founder Staff member Licensed User Longtime User Jun 3, 2011 #4 WebView raises the PageFinished event when the page is ready. Upvote 0
enrique1 Member Licensed User Longtime User Jun 3, 2011 #5 Erel said: WebView raises the PageFinished event when the page is ready. Click to expand... Oh! I hadn't saw it! Thanky very very much! Upvote 0
Erel said: WebView raises the PageFinished event when the page is ready. Click to expand... Oh! I hadn't saw it! Thanky very very much!
ciginfo Well-Known Member Licensed User Longtime User Oct 26, 2012 #6 And when a loading starts is there an event? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Oct 26, 2012 #7 You can see the list of events in the above link. Upvote 0