热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

VbScript-如何在程序中使用数组变量?-VbScript-howtousearrayvariableinthetheprogram?

Icreatecodelikethis我创建这样的代码aArray(-fx,-cr,-ie)Setiim1CreateObject(imacros)i

I create code like this

我创建这样的代码

a=Array(-fx,-cr,-ie)

Set iim1= CreateObject ("imacros")

    i = iim1.iimInit("a(0)", true)
    iret = iim1.iimInit()
    iret = iim1.iimSet("row", m)
    iret = iim1.iimPlay("hiren")
    iret = iim1.iimExit()

End Function

I define the array at a=Array(-fx,-cr,-ie). now i use this array like a(0) in the code like i use here

我将数组定义为a = Array(-fx,-cr,-ie)。现在我在代码中使用这个数组就像一个(0),就像我在这里使用的那样

i = iim1.iimInit("a(0)", true). but it is not working plz help. what is wrong?

i = iim1.iimInit(“a(0)”,true)。但它没有工作PLZ的帮助。哪里不对?

1 个解决方案

#1


1  

a(0) is your first array element. "a(0)" is just a string. Try removing the quotes.

a(0)是你的第一个数组元素。 “a(0)”只是一个字符串。尝试删除引号。

Also, iimInit() requires a string for its first parameter. So you need to add quotes to your array elements during definition.

此外,iimInit()需要一个字符串作为其第一个参数。因此,您需要在定义期间向数组元素添加引号。

a = Array("-fx", "-cr", "-ie")

Set iim1 = CreateObject("imacros")
i = iim1.iimInit(a(0), True)    ' a(0) is the string "-fx"

推荐阅读
author-avatar
月下小野
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有