i need to execute some javascript functions from delphi code, but this functions fails if the page is not loaded in the Twebbrowser control. so the problem is if page is located in a tabshet wich is not active the page is not loaded until the tabsheet is become active.

the question is How to force load a page in a Twebbrowser control when this is not visible.

to test this behaviour just put a pagecontrol, with 2 tabsheets , and a twebbrowser in the second tabsheet, now in the oncreate event of the form put this code

WebBrowser1.Navigate('http://stackoverflow.com');

now when you run the app the page only loads when you makes the second tabsheet visible.

thanks in advance.

link|improve this question

Related - stackoverflow.com/questions/2070084/… – Darian Miller Nov 15 '10 at 4:47
feedback

2 Answers

up vote 9 down vote accepted

Call WebBrowser1.HandleNeeded; before you call WebBrowser1.Navigate

link|improve this answer
Thanks very much, works perfect. – Salvador Nov 14 '10 at 21:16
feedback

I cannot reproduce the behavior you document. I have followed your instructions one page control, two tabs, webbrowser on second (invisible) tab.

To know if the page is loading, I have capture some events of the webbrowser. I see that onBeforeNavigate, onTitleChange and OnNavigateComplete all get fired without having to make second tabsheet visible.

Setting your javascript code to execute under one of those events may solve your problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.