Height / Width というプロパティがあるので指定。
Dim IE As InternetExplorer
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = True
.Top = 200
.Left = 100
.Height = 400
.Width = 1000
.Resizable = False
End Withネタ元
Height / Width というプロパティがあるので指定。
Dim IE As InternetExplorer
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = True
.Top = 200
.Left = 100
.Height = 400
.Width = 1000
.Resizable = False
End Withネタ元