|
-
May 20th, 1999, 05:26 AM
#1
Frames
How can I get the IHTMLDocument2 interfaces of the child frames?
Adachi
-
June 15th, 1999, 04:51 PM
#2
Re: Frames
Try iterating of the frame collection and doing this:
// Get a frame from the collection.
//
_variant_t index;
index.vt = VT_UINT;
index.lVal = count;
MSHTML::IHTMLWindow2Ptr tempWindow( frameCollection->item( &index ) );
if ( tempWindow == NULL )
{
continue;
}
// Get the
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|