Rank: Advanced Member Groups: Member
Joined: 11/3/2015 Posts: 65
|
Hello,
I have a program mostly like the Tabbed Browser, but with fix URLs.
If the Program starts it creates 8 hidden tabs, each with one Webview.
If the user select an option the one Tab will be turend to visible and load a Webpage.
Unfortunately at this moment the user has to wait very long (5 seconds in last verison and 10 in the new...), because the page is not loadet, if it's invisible.
Is it possible to force the page to be loaded, even if it's on an invisible or not selected tab? Then the 8 pages could be loaded before the usere select the option and he does not have to wait so long.
Best regards
Marius
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,218
|
Hi,
You need to force the "invisible" tab's window to be created. The WebView's window handle will not be created until it's container's window handle is created. And everything else (loading/displaying) only occurs after the window handle is created.
Thanks
|
Rank: Advanced Member Groups: Member
Joined: 11/3/2015 Posts: 65
|
Okay, thank you.
|