| View previous topic :: View next topic |
| Author |
Message |
hs Guest
|
Posted: Tue Jan 10, 2006 4:37 pm Post subject: How to safely use TCppWebBrowser |
|
|
Hi!
I use TCppWebBrowser in my application. Sometimes my application
crashes with access violation from module mshtml.dll. For example when
I change proxy settings in IE or switch between windows users. I know
it is a bug in IE. how to safely use TCppWebBrowser so when IE crashes
I can recreate the object without crashing the app.
thanks in advance
hs |
|
| Back to top |
|
 |
PiSymbol Junior Member
Joined: 06 Mar 2006 Posts: 13 Location: The Netherlands
|
Posted: Mon Mar 06, 2006 10:05 am Post subject: re:How to safely use TCppWebBrowser |
|
|
Dear hs,
| Code: |
try {
...
}
catch(...)
{
recreate object
}
|
Doesn't this do the trick?
PiSymbol |
|
| Back to top |
|
 |
|