This error is generated by:
WebBrowser.Navigate
Here's a question very similar to yours, same error while using WebBrowser.Navigate
:
How to fix "The requested resource is in use. (Exception from HRESULT: 0x800700AA)"
This is definitely a client side error, I can also see that back-window titled "Internet Explorer script error" - Do you have your Vista fully updated?
This error doesn't really deals with the operating system architecture, it normally occurs when IE is doing something else, for example: displaying a window.alert
message box.
I say post your full code if possible, and also copy the entire message provided in that error window and post that here instead of the screenshot you currently have.
Are you using Add-in Express in your application?
If so, try this as a quick test to see if it still generates the error, got it from this discussion:
private void adxieCommandItem1_OnClick(object sender, object htmlDoc)
{
this.SendMessage(0x400 + 1000, IntPtr.Zero, IntPtr.Zero);
}
private void IEModule_OnSendMessage(AddinExpress.IE.ADXIESendMessageEventArgs e)
{
if (e.Message == 0x400 + 1000)
{
object dummy = Type.Missing;
try
{
IEApp.Navigate("http://www.add-in-express.com";, ref dummy, ref dummy, ref dummy, ref dummy);
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}
}
}