Is it possible to load a webpage in a TWebBrowser in a background thread?
When the application loads, I want to download a page from the web into a TWebBrowser, but I don't want to block the gui-thread.
Any suggestions?
Some clarifications:
The webbrowser-component is living on a form, and i want to display a page from the web. But I want to do all the downloading of that page in a background thread, so that loading a heavy page won't block the gui-thread.
I think I'm capable of writing threads in general.