6

Outlook用のDynamicsプラグインは、InternetExplorerの埋め込みウィンドウを介してコンテンツを表示します。その埋め込みウィンドウのSHDocVw.InternetExplorerCOMオブジェクトを取得する方法を見つけようとしています。私たちのアプリケーションはスタンドアロンで実行され(OutlookまたはIEアドインではありません)、埋め込みIEウィンドウの作成をまったく制御できません。

私が使用するとき:

Dim SWs As SHDocVw.ShellWindows
Set SWs = New SHDocVw.ShellWindows

SWコレクションには、Outlookの組み込みブラウザーへの参照が含まれていません(ただし、通常のブラウザーウィンドウへの参照は取得します)。

Spy ++を使用すると、埋め込まれたOutlookウィンドウの次のウィンドウ階層が表示されます。

Window "xxxxxx" WindowsForms10.Window.8.app.0.5c39d4_r64_ad2
  - "" Shell Embedding
    - "" Shell DocObject View
      - "" Internet Explorer_Server

階層の最後の2つのウィンドウ(Shell DocObjectViewとInternetExplorer_Server)は、実行中のInternetExplorerインスタンスの組み込みビューアーの場合とまったく同じです。

これらの埋め込みブラウザへのCOM参照を取得する方法が必要なようです。ヘルプやアイデアをいただければ幸いです。

4

2 に答える 2

5

KB249232を参照してください。アクセシビリティ関連のものを使用IHTMLDocument2して、ウィンドウからポインタを取得できます。Internet Explorer_Serverそれはきれいではなく、ターゲットプロセスとは異なる整合性レベルで実行している場合は機能しません。

実行していることによっては、ターゲットアプリを不安定にする可能性があるため、注意してください。そして、マーシャリングに注意してください。

于 2012-06-22T22:15:24.077 に答える
1

Hwndを使用してHTMLDocumentを取得する方法は次のとおりです。

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Diagnostics;
    using System.Drawing;
    using System.Runtime.InteropServices;
    using System.Text;
    using System.Windows.Forms;
    using mshtml;

    namespace HookBrowser
    {
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        #region API CALLS

        [DllImport("user32.dll", EntryPoint = "GetClassNameA")]
        public static extern int GetClassName(IntPtr hwnd, StringBuilder lpClassName, int nMaxCount);

        /*delegate to handle EnumChildWindows*/
        public delegate int EnumProc(IntPtr hWnd, ref IntPtr lParam);

        [DllImport("user32.dll")]
        public static extern int EnumChildWindows(IntPtr hWndParent, EnumProc lpEnumFunc, ref  IntPtr lParam);
        [DllImport("user32.dll", EntryPoint = "RegisterWindowMessageA")]
        public static extern int RegisterWindowMessage(string lpString);
        [DllImport("user32.dll", EntryPoint = "SendMessageTimeoutA")]
        public static extern int SendMessageTimeout(IntPtr hwnd, int msg, int wParam, int lParam, int fuFlags, int uTimeout, out int lpdwResult);
        [DllImport("OLEACC.dll")]
        public static extern int ObjectFromLresult(int lResult, ref Guid riid, int wParam, ref IHTMLDocument2 ppvObject);
        public const int SMTO_ABORTIFHUNG = 0x2;
        public Guid IID_IHTMLDocument = new Guid("626FC520-A41E-11CF-A731-00A0C9082637");

        #endregion

        public IHTMLDocument2 document;

        private void button1_Click(object sender, EventArgs e)
        {
            document = documentFromDOM();
            /// check that we have hold of the IHTMLDocument2...
            if (!(bool)(document == null))
            {
                this.Text = document.url;
            }
        }

        private IHTMLDocument2 documentFromDOM()
        {
            Process[] processes = Process.GetProcessesByName("iexplore");
            if (processes.Length > 0)
            {
                IntPtr hWnd = processes[0].MainWindowHandle;
                int lngMsg = 0;
                int lRes;

                EnumProc proc = new EnumProc(EnumWindows);
                EnumChildWindows(hWnd, proc, ref hWnd);
                if (!hWnd.Equals(IntPtr.Zero))
                {
                    lngMsg = RegisterWindowMessage("WM_HTML_GETOBJECT");
                    if (lngMsg != 0)
                    {
                        SendMessageTimeout(hWnd, lngMsg, 0, 0, SMTO_ABORTIFHUNG, 1000, out lRes);
                        if (!(bool)(lRes == 0))
                        {
                            int hr = ObjectFromLresult(lRes, ref IID_IHTMLDocument, 0, ref document);
                            if ((bool)(document == null))
                            {
                                MessageBox.Show("NoLDocument Found!", "Warning");
                            }
                        }
                    }
                }
            }
            return document;
        }

        private int EnumWindows(IntPtr hWnd, ref IntPtr lParam)
        {
            int retVal = 1;
            StringBuilder classname = new StringBuilder(128);
            GetClassName(hWnd, classname, classname.Capacity);
            /// check if the instance we have found is Internet Explorer_Server
            if ((bool)(string.Compare(classname.ToString(), "Internet Explorer_Server") == 0))
            {
                lParam = hWnd;
                retVal = 0;
            }
            return retVal;
        }
    }
}

詳細については、このリンクを参照してください。

http://www.xtremevbtalk.com/code-library/295336-internet-explorer-dom-using-objectfromlresult.html

于 2018-07-14T17:52:53.893 に答える