VBAでIE操作 縦幅横幅指定

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

ネタ元