
Uipath学习
神奇的VBA
这个作者很懒,什么都没留下…
展开
-
Uipath基础——流程控制1
Uipath基础——流程控制1If 判断变量intInput是定义来接受输入对话框的输出的对应的VB代码: Sub GeussNum() Dim intInput As Integer = CInt(InputBox("请输入一个数字", "输入提示:")) If intInput > 10 Then Debug.Pri...原创 2019-10-05 21:43:55 · 914 阅读 · 0 评论 -
UiPath中 数组、列表、字典的定义
Dim arrStu() As String = {"A", "B", "C"} Dim listStu As New List(Of String) From {"A", "V", "C"} Dim dicStu As New Dictionary(Of String, String) From {{"1", "A"}, {"2", "B"}, ...原创 2019-10-06 06:25:42 · 5152 阅读 · 0 评论