「ではこのコードについて解説する」
Y
藍
スキップ
オート
セーブ
おわる
'サンプル1.1_InternetExplorerを起動する(可視化あり)
Public Sub showIE()
    'IEを格納する変数(オブジェクト型)
    Dim ie As Object
   
    'IEを起動し、変数ieに格納
    Set ie = CreateObject("InternetExplorer.Application")
   
    'IEを可視化する
    ie.Visible = True
End Sub