| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「VBA 起動中のInternetExplorerを操作する」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
(ページの作成:「==VBA 起動中のInternetExplorerを操作する== [IE]{{category VBA}} ===起動中のIEのツールバー、メニューバーを表示する=== *参考 **http://w…」)
 
1行目: 1行目:
 
==VBA 起動中のInternetExplorerを操作する==
 
==VBA 起動中のInternetExplorerを操作する==
[IE]{{category VBA}}
+
[[IE]]{{category VBA}}
 
===起動中のIEのツールバー、メニューバーを表示する===
 
===起動中のIEのツールバー、メニューバーを表示する===
 
*参考
 
*参考

2020年2月15日 (土) 08:06時点における版

VBA 起動中のInternetExplorerを操作する

IEテンプレート:Category VBA

起動中のIEのツールバー、メニューバーを表示する

Dim shl    As Object
Dim w      As Object
Dim ie     As Object  'InternetExplorer

Set shl = CreateObject("Shell.Application")

For Each w In shl.Windows
    If TypeName(w.document) = "HTMLDocument" Then
        Set ie = w
        ie.Toolbar = 1
        ie.MenuBar = True
    End If
Next