VB中 dim a as integer ,如果在某个事件中想写这样的代码,text1(a).forcolor=***,但是a 的范围是但是a的范围是 for a=0 to 15 和 for a =18 to 20,现在我这样写的:for a=0 to15text(a).forecolor=***nextfor a =18 to 20text(a).forecolor=***next如果变量a需要断开分了很多段就要写很多次,能简化吗后面的***是相同的参数

问题描述:

VB中 dim a as integer ,如果在某个事件中想写这样的代码,text1(a).forcolor=***,但是a 的范围是
但是a的范围是 for a=0 to 15 和 for a =18 to 20,现在我这样写的:
for a=0 to15
text(a).forecolor=***
next
for a =18 to 20
text(a).forecolor=***
next
如果变量a需要断开分了很多段就要写很多次,能简化吗
后面的***是相同的参数