I did already some google research on this subject like here stackoverflow but did not find the correct answer for my problem. My application is running fine on some client PC's but not on all systems we would like to use our tool.
I guess my code for loading a HTML file into the web browser is also fine for most conditions :
MyWebBrowser.Navigate('about:blank');
MyWebBrowser.Navigate('file://' + Filename);
while MyWebBrowser.ReadyState <> READYSTATE_COMPLETE do
application.ProcessMessages;
but there must be some condition on these problems PC where it leads to the freezing of my application while trying to navigate to my HTML file.
I guess an answer solving my problem will check something on my IE settings and adjust these params before loading the file but here I #m running out of knowledge.