Jump to content

Acess to Application.parent object wiuth IE


Recommended Posts

$IE=Objcreate("InternetExplorer.Application.1")
$IE.visible= 1

$IE.RegisterAsDropTarget = 1
$IE.RegisterAsBrowser = 1
$IE.navigate2("http://forums.purebasic.fr/")
While $ie.ReadyState <> 4
    Sleep(250)
WEnd
Dim $IEC
$IEC = $IE.application.parent.frames.ORT.login.innertext
Exit

The following code is not good

$IE.application.parent.frames.ORT.login.innertext

How can i do to access Application.parent object ?

Best regards

Link to comment
Share on other sites

$IE=Objcreate("InternetExplorer.Application.1")
$IE.visible= 1

$IE.RegisterAsDropTarget = 1
$IE.RegisterAsBrowser = 1
$IE.navigate2("http://forums.purebasic.fr/")
While $ie.ReadyState <> 4
    Sleep(250)
WEnd
Dim $IEC
$IEC = $IE.application.parent.frames.ORT.login.innertext
Exit

The following code is not good

How can i do to access Application.parent object ?

Best regards

<{POST_SNAPBACK}>

Since this is not really an AutoIt related issue, I suggest reading the Internet Explorer Object documentation. Like the one on:

http://msdn.microsoft.com/library/default....rence_entry.asp

It looks like you are mixing up frames with forms.

Regards,

-Sven

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...