Thanks. I have looked through the DOM Inspector and it shows that the frame i'm trying to access is an iframe with the following (removed url)
attributes:
* width : 525
* scrolling : auto
* height : 1000
* frameborder : 0
* class : iframenoborder
* name : grouptext
* style : float: left; width: 371px; z-index: 1;
parent structure
* html
* body class="personal"
* div id="frame"
* div id="container"
* div id="middle"
* div id="rightcol"
* div id="contentframe"
* div id="content"
So when I try to get a reference to the framw through the following
$o_frame = _IEFrameGetObjByName($oIE, "grouptext")
If Not IsObj($o_frame) Then
MsgBox(0, "Error", "No Frame ref")
Else
Msgbox(0,"Error","Success")
EndIf
works great - no errors (I also check the @error) but when I call the Form function it fails
$o_form = _IEFormGetObjByName($o_frame, "sendForm")
It also throws an error on $o_frame.document (I tried this out of curiosity)
Does it make any difference since it is an iframe (rather than frame) and within all those div?
(Sorry if this is a naive question - my background is C++ and I know little about web technologies)