Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7084901
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:21:33+00:00 2026-05-28T07:21:33+00:00

I can see this being a simple correction however it has me stumped. This

  • 0

I can see this being a simple correction however it has me stumped.

This is the error I am getting

COMException was unhandled

Error HRESULT E_FAIL has been returned from a call to a COM component.

This is the code (I have blanked out the URL however they are valid)

class SMSHandler
{
    private InternetExplorer ie;
    private object URL = "##########";
    private object URL2 = "###########";

    public SMSHandler()
    {
        ie = new InternetExplorer();
        ie.Visible = true;
    }

    public void openMACS()
    {
        object Empty = 0;

        ie.Navigate2(ref URL, ref Empty, ref Empty, ref Empty, ref Empty);

        while (ie.Busy);

        ie.Navigate2(ref URL2, ref Empty, ref Empty, ref Empty, ref Empty);

        IHTMLDocument2 HTMLDoc = (IHTMLDocument2)ie.Document;

    }

This is the line that is generating the error

IHTMLDocument2 HTMLDoc = (IHTMLDocument2)ie.Document;

The web page opens fine however when I try to assign the Document to the IHTMLDocument2 it fails.

Any help would be great

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:21:33+00:00Added an answer on May 28, 2026 at 7:21 am

    You are forgetting to wait for the page load to be completed. The while (ie.Busy) ; loop is quite ugly, you don’t want to burn 100% core while waiting for IE to complete. Use the DocumentComplete event instead. And a state machine to keep track of where you are. Something like this:

    private int state = 0;
    public SMSHandler()
    {
        ie = new InternetExplorer();
        ie.DocumentComplete += ie_DocumentComplete;
        ie.Visible = true;
    }
    
    void ie_DocumentComplete(object pDisp, ref object URL) {
        object Empty = 0;
        if (state == 1) {
            ie.Navigate2(ref URL2, ref Empty, ref Empty, ref Empty, ref Empty);
            state++;
        }
        else if (state == 2) {
            IHTMLDocument2 HTMLDoc = (IHTMLDocument2)ie.Document;
            // etc..
            state = 0;
        }
    }
    
    public void openMACS()
    {
        object Empty = 0;
        state = 1;
        ie.Navigate2(ref URL, ref Empty, ref Empty, ref Empty, ref Empty);
    }
    

    Consider using the WebBrowser class so you don’t have to run IE out-of-process. This answer shows you how to run it in a separate thread. Which is a very likely reason you got E_FAIL on your code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone explain ProxyFactoryBean in simple terms? I see this being quoted lot of
This Wikipedia page has an extensive list of hashing methods As you can see,
As you can see this is a question from a non web developer. I
I have a Dell Inspiron E1505 and as you can see in this image
I can't see why this won't work. I am performing lstrip() on the string
I can see some potential difficulties with this concept but the idea is: I
How can I remove the animation from this jQuery modal window? You can see
I have something that looks like this: As you can see, Blambo is a
I have this code below. As you can see I am passing two variables
So I have this page here: http://www.eminentmedia.com/development/powercity/ As you can see when you mouse

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.