Set objShell = WScript.CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Zoom\ZoomFactor",100000,"REG_DWORD"
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = True
objIE.FullScreen = False
objIE.Top = 0
objIE.Left = 0
objIE.Width = 1280
objIE.Height = 964
objIE.Toolbar = True
objIE.MenuBar = True
objIE.AddressBar = True
objIE.StatusBar = True
objIE.Navigate2 "https://e-navi.rakuten-card.co.jp/login/show"
Do Until objIE.Busy = False
WScript.sleep(250)
Loop
objIE.Document.Forms(0).u.value = "ユーザID"
objIE.Document.Forms(0).p.value = "パスワード"
objIE.Document.Forms(0).Submit
objIE.Navigate2 "https://point.rakuten.co.jp/", &H800
Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.AppActivate "Explorer" |
|