📄 session.vbs
字号:
set oEc = Wscript.CreateObject("EasyCics.App")
r = oEc.EpiConnectServer( "CICSNT01" )
if r<>0 then
MsgBox "can't connect"
Wscript.Quit r
end if
oEc.EpiStartTran "SESS"
if oEc.GetErrCode() <>0 then
MsgBox oEc.GetErrCode()
MsgBox "can't StartTran"
Wscript.Quit r
end if
r= oEc.EpiGetEvent
if oEc.EpiGetEventType() = 2 then
s= InputBox( oEc.EpiGetEventData() )
oEc.EpiReply s
r= oEc.EpiGetEvent
if oEc.EpiGetEventType() = 2 then
s= InputBox( oEc.EpiGetEventData() )
oEc.EpiReply s
end if
end if
r= oEc.EpiDisConnect()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -