Last active
August 29, 2015 13:57
-
-
Save kumatti1/9576453 to your computer and use it in GitHub Desktop.
nanacoにログイン
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Dim ie | |
Const ID = | |
Const PW = | |
Const url = "https://www.nanaco-net.jp/pc/emServlet" | |
Set ie = CreateObject("InternetExplorer.Application") | |
ie.Visible = True | |
ie.Navigate url | |
While ie.busy Or ie.ReadyState <> 4 | |
WScript.Sleep (100) | |
Wend | |
ie.document.forms(0).Item("XCID").Value = ID | |
ie.document.forms(0).Item("LOGIN_PWD").Value = PW | |
ie.document.forms(0).all("ACT_ACBS_do_LOGIN1").Click |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment