Tip of day: Dynamically add webimageview to webpage
This works. How to find the _addcontrol method? Well, I first looked for embed method, insertcontrol, addcontrol, constructor parameters in the documentation. As there is nothing, I tried a few things. You can simply code and see what the compiler says. If you type "self._addcontrol" and compile you get either an unknown identifier or missing parameters. In the second case you know the method exists.dim i as new WebImageView
i.Name = "logoview"
i.URL = "http://www.monkeybreadsoftware.de/realcon2011logo/logo.php"
i.Left = 10
i.top = 10
i.Width = 460
i.Height = 80
self._addcontrol i
Join the feedback case: Add addcontrol method to webview