Technology Questions

Go Back   Technology Questions > Software Questions > Internet > Internet Explorer

Internet Explorer Discuss IE7 or any other IE version.



Reply
 
LinkBack Thread Tools
  #1  
Old 11-12-2009, 09:40 AM
Bob
Newsgroup Contributor
 
Posts: n/a
IE8 Web Browser control error

I have an ActiveX control that utilizes the Web Browser control to display
webpages. On PCs with IE8, sometimes the following error occurs:

An action cannot be completed because a component is not responding

I cannot reproduce the error when debugging. There are no issues on PCs with
IE7.

Has anyone encountered a similar issue? Is there a resolution?

Thanks, Bob
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

 
Old 11-12-2009, 09:40 AM
  #2  
Old 11-12-2009, 10:50 AM
rob^_^
Newsgroup Contributor
 
Posts: n/a
Re: IE8 Web Browser control error

On Error Resume Next

"Bob" <Bob@discussions.microsoft.com> wrote in message
news:C7D63A03-F749-4094-9EB1-3B59020376EF@microsoft.com...
> I have an ActiveX control that utilizes the Web Browser control to display
> webpages. On PCs with IE8, sometimes the following error occurs:
>
> An action cannot be completed because a component is not responding
>
> I cannot reproduce the error when debugging. There are no issues on PCs
> with
> IE7.
>
> Has anyone encountered a similar issue? Is there a resolution?
>
> Thanks, Bob
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3  
Old 11-12-2009, 05:30 PM
Bob
Newsgroup Contributor
 
Posts: n/a
Re: IE8 Web Browser control error

The window displaying "An action cannot ..." seems to be generated by the OS.
It has the buttons "Switch To" and "Retry". I do not believe this issue is
some sort of trappable error.

"rob^_^" wrote:

> On Error Resume Next
>
> "Bob" <Bob@discussions.microsoft.com> wrote in message
> news:C7D63A03-F749-4094-9EB1-3B59020376EF@microsoft.com...
> > I have an ActiveX control that utilizes the Web Browser control to display
> > webpages. On PCs with IE8, sometimes the following error occurs:
> >
> > An action cannot be completed because a component is not responding
> >
> > I cannot reproduce the error when debugging. There are no issues on PCs
> > with
> > IE7.
> >
> > Has anyone encountered a similar issue? Is there a resolution?
> >
> > Thanks, Bob
> >

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4  
Old 11-12-2009, 11:10 PM
rob^_^
Newsgroup Contributor
 
Posts: n/a
Re: IE8 Web Browser control error

Hi Bob,

That error occurs on the InternetExplorer object not the WebBrowser control?

Private Sub OpenNewIE(ByVal sURL As String)
'Open a new IE Window and navigate the specified url
On Error Resume Next
If myWB Is Nothing Then
Set myWB = New InternetExplorer
End If
myWB.Navigate2 sURL
Do While myWB.Busy
If Err.Number Then Exit Do
Loop
myWB.Visible = True
If Err.Number > 0 Then
MsgBox Err.Description, vbCritical, App.ProductName
End If
End Sub

Put a loop in it while IE is busy. Sometimes though you have to get out of
there if an Addon causes a tab crash.

Regards.

"Bob" <Bob@discussions.microsoft.com> wrote in message
news:815F3ACA-0484-4C8F-B5CF-D3BF592E4D7A@microsoft.com...
> The window displaying "An action cannot ..." seems to be generated by the
> OS.
> It has the buttons "Switch To" and "Retry". I do not believe this issue is
> some sort of trappable error.
>
> "rob^_^" wrote:
>
>> On Error Resume Next
>>
>> "Bob" <Bob@discussions.microsoft.com> wrote in message
>> news:C7D63A03-F749-4094-9EB1-3B59020376EF@microsoft.com...
>> > I have an ActiveX control that utilizes the Web Browser control to
>> > display
>> > webpages. On PCs with IE8, sometimes the following error occurs:
>> >
>> > An action cannot be completed because a component is not responding
>> >
>> > I cannot reproduce the error when debugging. There are no issues on PCs
>> > with
>> > IE7.
>> >
>> > Has anyone encountered a similar issue? Is there a resolution?
>> >
>> > Thanks, Bob
>> >

>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #5  
Old 11-13-2009, 02:20 PM
rob^_^
Newsgroup Contributor
 
Posts: n/a
Re: IE8 Web Browser control error

Hi Bob,

Do you have the latest Maxthon browser installed? (or any other MSIE
browser?)

I am noticing these errors now once I have installed the latest Maxthon
update.

Regards.

"Bob" <Bob@discussions.microsoft.com> wrote in message
news:815F3ACA-0484-4C8F-B5CF-D3BF592E4D7A@microsoft.com...
> The window displaying "An action cannot ..." seems to be generated by the
> OS.
> It has the buttons "Switch To" and "Retry". I do not believe this issue is
> some sort of trappable error.
>
> "rob^_^" wrote:
>
>> On Error Resume Next
>>
>> "Bob" <Bob@discussions.microsoft.com> wrote in message
>> news:C7D63A03-F749-4094-9EB1-3B59020376EF@microsoft.com...
>> > I have an ActiveX control that utilizes the Web Browser control to
>> > display
>> > webpages. On PCs with IE8, sometimes the following error occurs:
>> >
>> > An action cannot be completed because a component is not responding
>> >
>> > I cannot reproduce the error when debugging. There are no issues on PCs
>> > with
>> > IE7.
>> >
>> > Has anyone encountered a similar issue? Is there a resolution?
>> >
>> > Thanks, Bob
>> >

>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #6  
Old 11-19-2009, 07:40 AM
Bob
Newsgroup Contributor
 
Posts: n/a
Re: IE8 Web Browser control error

The issue should be associated with the WebBrowser control, not IE object.
I believe the error occurs just after Navigate2 call. For example:

Call frmMain.WebBrowser.Navigate2(sURL)

Thanks, Bob

"rob^_^" wrote:

> Hi Bob,
>
> That error occurs on the InternetExplorer object not the WebBrowser control?
>
> Private Sub OpenNewIE(ByVal sURL As String)
> 'Open a new IE Window and navigate the specified url
> On Error Resume Next
> If myWB Is Nothing Then
> Set myWB = New InternetExplorer
> End If
> myWB.Navigate2 sURL
> Do While myWB.Busy
> If Err.Number Then Exit Do
> Loop
> myWB.Visible = True
> If Err.Number > 0 Then
> MsgBox Err.Description, vbCritical, App.ProductName
> End If
> End Sub
>
> Put a loop in it while IE is busy. Sometimes though you have to get out of
> there if an Addon causes a tab crash.
>
> Regards.
>
> "Bob" <Bob@discussions.microsoft.com> wrote in message
> news:815F3ACA-0484-4C8F-B5CF-D3BF592E4D7A@microsoft.com...
> > The window displaying "An action cannot ..." seems to be generated by the
> > OS.
> > It has the buttons "Switch To" and "Retry". I do not believe this issue is
> > some sort of trappable error.
> >
> > "rob^_^" wrote:
> >
> >> On Error Resume Next
> >>
> >> "Bob" <Bob@discussions.microsoft.com> wrote in message
> >> news:C7D63A03-F749-4094-9EB1-3B59020376EF@microsoft.com...
> >> > I have an ActiveX control that utilizes the Web Browser control to
> >> > display
> >> > webpages. On PCs with IE8, sometimes the following error occurs:
> >> >
> >> > An action cannot be completed because a component is not responding
> >> >
> >> > I cannot reproduce the error when debugging. There are no issues on PCs
> >> > with
> >> > IE7.
> >> >
> >> > Has anyone encountered a similar issue? Is there a resolution?
> >> >
> >> > Thanks, Bob
> >> >

> >

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #7  
Old 11-19-2009, 07:40 AM
Bob
Newsgroup Contributor
 
Posts: n/a
Re: IE8 Web Browser control error

Only browser installed is IE8.

Thanks, Bob

"rob^_^" wrote:

> Hi Bob,
>
> Do you have the latest Maxthon browser installed? (or any other MSIE
> browser?)
>
> I am noticing these errors now once I have installed the latest Maxthon
> update.
>
> Regards.
>
> "Bob" <Bob@discussions.microsoft.com> wrote in message
> news:815F3ACA-0484-4C8F-B5CF-D3BF592E4D7A@microsoft.com...
> > The window displaying "An action cannot ..." seems to be generated by the
> > OS.
> > It has the buttons "Switch To" and "Retry". I do not believe this issue is
> > some sort of trappable error.
> >
> > "rob^_^" wrote:
> >
> >> On Error Resume Next
> >>
> >> "Bob" <Bob@discussions.microsoft.com> wrote in message
> >> news:C7D63A03-F749-4094-9EB1-3B59020376EF@microsoft.com...
> >> > I have an ActiveX control that utilizes the Web Browser control to
> >> > display
> >> > webpages. On PCs with IE8, sometimes the following error occurs:
> >> >
> >> > An action cannot be completed because a component is not responding
> >> >
> >> > I cannot reproduce the error when debugging. There are no issues on PCs
> >> > with
> >> > IE7.
> >> >
> >> > Has anyone encountered a similar issue? Is there a resolution?
> >> >
> >> > Thanks, Bob
> >> >

> >

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
IE7 error when I close a browser window Al Lima Internet Explorer 6 03-29-2009 03:07 AM
Browser error? ~BD~ Windows XP 2 02-14-2009 08:16 PM
Browser error? ~BD~ Windows XP 2 12-14-2008 02:10 AM
Re: setup parental control in browser PA Bear [MS MVP] Windows XP 5 01-28-2008 11:30 PM
USB Browser Mouse Driver Error bulb005 Vista Hardware 0 04-12-2007 12:27 PM


New To Technology Questions? Do You Need Help with Your Computer or Device? Do You Need Help with this site?

All times are GMT -8. The time now is 11:57 AM.


2003 - 2010 All Rights Reserved. Technology Questions

Search Engine Friendly URLs by vBSEO 3.3.0