0

本当に古いアプリケーション用にDCOM拡張機能を作成しています。メインアプリケーションには、内部にIEコントロールがあります。

C#を使用して、次のようにそのIEコントロールのハンドラーを取得できました。

Process pr = Process.GetCurrentProcess();

var title = pr.MainWindowTitle;
if(title.IndexOf("My old application -")<0)
{
    MessageBox.Show("No such window");
    return;
}
var wlwWindow = pr.MainWindowHandle;
var ieWindow = PI.FindWindowRecursive(wlwWindow, "Internet Explorer_Server", null);
if (ieWindow == IntPtr.Zero)
{
    MessageBox.Show("Unable to locate IE window.");
    return;
}
var myDocument= PI.GetIEDocumentFromWindowHandle(ieWindow);
MessageBox.Show(myDocument.url);

そして、これが私のヘルパーメソッドです:

    public static IntPtr FindWindowRecursive(IntPtr parent, string windowClass, string windowCaption)
    {
        var found = FindWindowEx(parent, IntPtr.Zero, windowClass, windowCaption);
        if (found != IntPtr.Zero)
        {
            return found;
        }

        var child = FindWindowEx(parent, IntPtr.Zero, null, null);
        while (child != IntPtr.Zero)
        {
            found = FindWindowRecursive(child, windowClass, windowCaption);
            if (found != IntPtr.Zero)
            {
                return found;
            }
            child = GetNextWindow(child, 2);
        }
        return IntPtr.Zero;
    }

    public static IHTMLDocument2 GetIEDocumentFromWindowHandle(IntPtr hWnd)
    {
        IHTMLDocument2 htmlDocument = null;
        if (hWnd != IntPtr.Zero)
        {
            uint lMsg = RegisterWindowMessage("WM_HTML_GETOBJECT");
            UIntPtr lResult;
            SendMessageTimeout(hWnd, lMsg, UIntPtr.Zero, UIntPtr.Zero,
                SendMessageTimeoutFlags.SMTO_ABORTIFHUNG, 1000, out lResult);
            if (lResult != UIntPtr.Zero)
            {
                htmlDocument = ObjectFromLresult(lResult, typeof(IHTMLDocument).GUID, IntPtr.Zero) as IHTMLDocument2;
                if (htmlDocument == null)
                {
                    throw new COMException("Unable to cast to an object of type IHTMLDocument");
                }
            }
        }
        return htmlDocument;
    }

この部分は正常に機能し、tempからそのhtmlページのコンテンツを取得できました。

<body id="state" class="saveFavorite" onload="load()" onunload="RUIMaster.Destroy()" style="margin: 0px; padding: 0px; overflow: hidden;">
<p style="display: none;">
<object classid="clsid:22FD36F1-A133-11d4-A0E4-005056E2D8AA" height="0" width="0" id="RUIMaster">
</object>
</object>
<form>
<input id="id" type="hidden" value="" />
</form>
</p>
<iframe name="AAMain" style="margin: 0px; border: 0px; padding: 0px;" id="contents" src="rdaui_frame.htm" width="100%" height="100%" frameborder="0" />
</body>

名前を付けてiframeにアクセスする必要がありますAAMain
そのiframeドキュメントのコンテンツは次のようになります。

<frameset cols="135,*" border="0" frameborder="no" framespacing="0">
    <frame name="Menu" scrolling="no" noresize marginwidth="0" marginheight="0" src="blank.htm">
    <frameset rows="310,*,31">
        <frame name="Top" noresize marginwidth="0" marginheight="0" src="blank.htm">
        <frame name="Centre" noresize marginwidth="0" marginheight="0" src="blank.htm">
        <frame name="Bottom" noresize marginwidth="0" marginheight="0" src="blank.htm">
    </frameset>
</frameset>

したがって、基本的には、 AAMainという名前のiframe内のフレームセンターにアクセスする必要があります

myDocument-> iframe(AAMain)-> frame(Centre)->そして画像をクリックします

のフレームを反復処理しようとしましたmyDocumentが、無効なキャスト例外が発生します。

try
{
    FramesCollection frames = myDocument.frames;
    object index = 0;
    IHTMLWindow2 frame = (IHTMLWindow2)frames.item(ref index);
    var xx = (HTMLDocument)frame.document;
    MessageBox.Show(xx.body.innerHTML);
}
catch (Exception ex)
{
    MessageBox.Show(ex.Message);
}

このようなコードでさえ:

MessageBox.Show(myDocument.frames.length.ToString());

同じキャスト例外が発生します。

4

2 に答える 2

0

これは、 http://www.w3schools.com/jsref/prop_frame_contentwindow.aspに従って、使用している IE のバージョンに応じて、iframe 要素の contentWindow または contentDocument プロパティを介して可能である必要があります。いくつかの要素を返しますが、空のドキュメント プロパティがあります (私の場合は IE9)。

この質問はしばらく前に投稿されたので、これである程度の進歩があったかどうか疑問に思っていますか?

于 2013-05-25T10:20:06.123 に答える
0

シングル スレッド アーキテクチャ (STA スレッド) を使用してフレーム コレクションにアクセスしてみてください。フレームの内容を確認する機能的なnunitテストで、それは私にとってはうまくいきました。スレッドモデルを切り替えるまで、同じキャストエラーが発生しました。

于 2014-12-24T14:27:05.220 に答える