上边是录制的一个移动滚动条的简单脚本,但这这样太长了,我想通过循环来实现这个功能。
按照简单的想法我改写成:
dim Count as integer,pll as integer
for Count=0 to 18
pll=50*count
ScrollBar VScrollTo, "Type=Control;Name=byLogCtrl1;\;Type=ScrollBar;Index=0", "Position=pll"
next count
但是发现滚动条没有动。
我是一个初学者,完全不懂是怎么回事,是不是 因为变量pll在双引号中,所以没有被当做变量处理?作者: msnshow 时间: 2009-12-21 22:21
变量的话,好像要加{}作者: zhangyamin05 时间: 2009-12-22 08:59 标题: 回复 2# 的帖子 按照你说的方法,把循环改为:
dim Count as integer,pll as integer
for Count=0 to 18
pll=50*count
ScrollBar VScrollTo, "Type=Control;Name=byLogCtrl1;\;Type=ScrollBar;Index=0", "Position={pll}"
next count