ホーム > IT > VBS > 証券会社編
目次 | 元のページ 前のページ | 次のページ サイトマップ | ページEND

自動ログイン用 VBSサンプル集 証券会社編


自動ログイン用 VBSサンプル集 証券会社編


各証券会社のWebサイトに、自動ログインするためのVBSコードのサンプルを提示しています
サンプルコードの中で使用しているサブルーチンは、各ページ共通で、ページ下に提示してあります



SBI証券

2014.3.31


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://site2.sbisec.co.jp/ETGate/"
Do Until objIE.Busy = False
    WScript.sleep(250)
Loop

Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.AppActivate "Explorer"


ページTOP


SMBC日興証券

2011.5.28


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://trade.smbcnikko.co.jp/Login/0/login/ipan_web/hyoji/"
Do Until objIE.Busy = False
    WScript.sleep(250)
Loop
objIE.Document.F1.koza1.value = "支店コード"
objIE.Document.F1.koza2.value = "口座番号"
objIE.Document.F1.passwd.value = "パスワード"
objIE.Document.F1.Submit

Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.AppActivate "Explorer"


ページTOP


カブドットコム証券

2014.4.14


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://s10.kabu.co.jp/_mem_bin/members/login.asp?/members/"
Do Until objIE.Busy = False
    WScript.sleep(250)
Loop
objIE.Document.Forms(1).SsLogonUser.value = "口座番号"
objIE.Document.Forms(1).SsLogonPassword.value = "パスワード"
objIE.Document.Forms(1).Submit

Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.AppActivate "Explorer"


ページTOP


マネックス証券

2014.3.31


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://www.monex.co.jp/Login/00000000/login/ipan_web/hyoji"
Do Until objIE.Busy = False
    WScript.sleep(250)
Loop
objIE.Document.F1.Item(0).value = "ログインID"
objIE.Document.F1.Item(1).value = "パスワード"
objIE.Document.F1.Submit

Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.AppActivate "Explorer"


ページTOP


三菱UFJMS証券

2012.12.24


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://online.sc.mufg.jp/its/dfw/UTBSITS/user_p/Login"
Do Until objIE.Busy = False
    WScript.sleep(250)
Loop
objIE.Document.forms("form").elements("ACCOUNTUID").value = "口座番号"
objIE.Document.forms("form").elements("PASSWORD").value = "パスワード"
objIE.Document.forms("form").all("SUBMIT").Click

Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.AppActivate "Explorer"


ページTOP



自動ログイン用 VBSサンプル集 サブルーチン編


各処理(VBS本体)で共通的に使用される処理をサブルーチン化して抜き出してあります
各処理(VBS本体)と同じフォルダーに入れておけば、自動的に呼び出され、実行されます


目次 | 元のページ 前のページ | 次のページ サイトマップ | ページTOP
ホーム > IT > VBS > 証券会社編
   

© 2014 abhp.net All Rights Reserved.
自動ログイン用 VBSサンプル集 目次
WSH VBScript とは 書き方 構文
WSH VBScript とは
WSH VBScript (VBS) 書き方 構文 作り方
WSH VBScript (VBS) 自動ログイン用 サンプル集
銀行編 前のページ
証券会社編 現在のページ
カード編 次のページ
官公庁編
ネットワーク サービス編
その他編

コンテンツ一覧

ページTOP
ページTOP
ページTOP
ページTOP