Jump to content

IE.au3 V2.4-0 Warning from function _IEAttach, $_IEStatus_NoMatch


Go to solution Solved by Danp2,

Recommended Posts

Dear Experts;

Have to work on Xmas  :

Can you help with this error ?

IE.au3 V2.4-0 Warning from function _IEAttach, $_IEStatus_NoMatch

I have IE9 installed and I want to do some task on my Intranet portal.

My code looks like below :-

#include <File.au3>
#include <Array.au3>
#include <IE.au3>
_IEErrorHandlerRegister()
 
$oUrl = "<a href='http://myinranet.site/' class='bbc_url' title='External link' rel='nofollow external'>http://myinranet.site/"
 
$oIE = _IEAttach ($oUrl, "$oUrl")
Link to comment
Share on other sites

  • Solution

I believe _IEErrorHandlerRegister is deprecated in the latest version of AI / IE.au3.

Try changing this:

$oUrl = "<a href='http://myinranet.site/' class='bbc_url' title='External link' rel='nofollow external'>http://myinranet.site/"
 
$oIE = _IEAttach ($oUrl, "$oUrl")

to:

$oUrl = "mysitename.com"
 
$oIE = _IEAttach ($oUrl, "URL")
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...