I’m using WebBrowser control to fill a web page . is it possible to using WB inside a thread ?
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
TWebBrowseris a VCL control. Therefore, it must be created and operated in the main VCL thread.The control already acts asynchronously, though. When you tell it to navigate to a page, it will do that in the background and notify you (via
OnNavigateCompleteand other events) when it’s finished.