Rank: Member Groups: Member
Joined: 1/29/2015 Posts: 26
|
I am having trouble making the cursor go to a wait cursor while the EO WebBrowser initializes and loads a web page. I set the Cursor.Current = Cursors.WaitCursor before I do a LoadUrl call but the cursor goes right back to a normal cursor again. I set the property of the WebControl.UseWaitCursor = True but that doesn't seem to make a difference. I even set the WebControl.Cursor = Cursors.WaitCursor but no effect. When Web control is initializing and loading the page it takes a bit of time to load and I want to show a wait cursor while this is happening and set it back to normal when it the page has loaded. What is the best way to do this?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,221
|
Hi,
There is no way for you to manage the cursor. The browser engine will always manage the cursor whenever the cursor is over the WebView (for example, some page has code that explicitly set the cursor and the browser engine has to honor that). So anything you set in your code will have no effect.
Thanks!
|