This sub move the cursor to the specified position for Pcom session[VBS]

时间:2015-09-18 ┊ 阅读:3,542 次 ┊ 标签: 开发 , 编程 , 分享

write this script just want to simplify our daily work, you can just copy and change it for your using, it can help you to move the cursor to anywhere you want when you use a pcom to access the as/400, do many thing for you. please share with all ones need it. thanks.

[PCOMM SCRIPT HEADER]
LANGUAGE=VBSCRIPT
DESCRIPTION=Your Script Name
[PCOMM SCRIPT SOURCE]
OPTION EXPLICIT
autECLSession.SetConnectionByName(ThisSessionName)


Sub MovCsr(Row, Col)
    Dim i
    If Row > 0 Then
        For i = 1 To Row
            autECLSession.autECLPS.Wait 100
            autECLSession.autECLOIA.WaitForAppAvailable
            autECLSession.autECLPS.SendKeys "[up]"
        Next
    End If
    If Row < 0 Then
        For i = 1 to Abs(Row)
            autECLSession.autECLPS.Wait 100
            autECLSession.autECLOIA.WaitForAppAvailable
            autECLSession.autECLPS.SendKeys "[down]"
        Next
    End If
    If Col > 0 Then
        For i = 1 to Col
            autECLSession.autECLPS.Wait 100
            autECLSession.autECLOIA.WaitForAppAvailable
            autECLSession.autECLPS.SendKeys "[left]"
        Next
    End If
    If Col < 0 Then
        For i = 1 to Abs(Col)
            autECLSession.autECLPS.Wait 100
            autECLSession.autECLOIA.WaitForAppAvailable
            autECLSession.autECLPS.SendKeys "[right]"
        Next
    End If
End Sub

美图奉上,赏心悦目:
cursor.jpg

文章评论

添加新评论

温馨提醒:如果您是第一次在本站留言,需要审核后才能显示哦!

相关文章

Mac电脑一直显示有未读信息怎么解决?

Mac电脑一直显示有未读信息怎么解决?

上次还是macOS14,一直没有解决。索性放着不管了,反正把所有没用的信息都清理了,已经确认没有未读信息了。 最近升级了macOS15最新版本,但还是提示有6条未读信息,百思不得其姐! 查了一下网上不少人遇到此问题,有说有bug,有说点掉过滤未知联系人信息啥,都不好用。 最后查到了Apple社...
阅读全文>>
Whatsapp只能查看最近三天的聊天记录了怎么办?

Whatsapp只能查看最近三天的聊天记录了怎么办?

今天突然发现电脑上的WhatsApp只能查看最近3天的聊天记录了,显示要查看3天前的记录请到手机上查看。很是吃惊,以前一直是所有记录都自动同步到电脑版的啊,不论换电脑了还是换手机了,聊天记录从来没丢过。 查询一翻也没有找出来原因,怎么也同步不过去。 电脑版app重新安装了,也不行。 有个方法说...
阅读全文>>
ValueError: Error getting directory

ValueError: Error getting directory

ssl证书过期了 明明自动renew的 然后看log已经好久没更新成功了 查半天是当前server不信任远程连接 只能自己改代码 报错: 21-12-17 13:01:11 Generate CSR...amkevin.csr amkevin.csr generated. /home/www...
阅读全文>>
网页路径中的'.'和'..'还有'./'和'../'区别

网页路径中的'.'和'..'还有'./'和'../'区别

. 表示当前目录 .. 表示当前目录的上一级目录。 ./表示当前目录下的某个文件或文件夹,视后面跟着的名字而定 ../表示当前目录上一级目录的文件或文件夹,视后面跟着的名字而定。 例如: 文件夹 a 下面有 文件夹b c 和文件 d。 文件夹b下面有e.php 和文件f。 则e中的 . 表示...
阅读全文>>
Introduction to ILE RPG Activation Groups

Introduction to ILE RPG Activation Groups

Learn how activation groups can help your ILE RPG programs run more efficiently, how to specify the type of group to use, and closing and reclaimin...
阅读全文>>