|
| | |||||||
| Internet Explorer Discuss IE7 or any other IE version. |
| | LinkBack | Thread Tools |
|
#1
| |||
| |||
| 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 |
| |
|
#2
| |||
| |||
| 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 > |
|
#3
| |||
| |||
| 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 > > |
|
#4
| |||
| |||
| 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 >> > > |
|
#5
| |||
| |||
| 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 >> > > |
|
#6
| |||
| |||
| 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 > >> > > > |
|
#7
| |||
| |||
| 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 > >> > > > |
| Bookmarks |
| Thread Tools | |
| |
| | ||||
| 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? |