程序代码:for a=1 to 10000 step -1 &&貌似step -1 这个不行
scan
thisform.text1.value=姓名
thisform.refresh
IF <退出循环条件> &&这个就是退出的条件,但是我不知道怎么设置
EXIT
endif
endscan
endfor
程序代码:for a=1 to 10000 step -1 &&貌似step -1 这个不行
scan
thisform.text1.value=姓名
thisform.refresh
IF <退出循环条件> &&这个就是退出的条件,但是我不知道怎么设置
EXIT
endif
endscan
endfor
2013-05-01 14:53
2013-05-01 15:03
程序代码:b=0
for a=1 to 100000 step 1
scan
thisform.text1.value=姓名
thisform.refresh
IF a=INT(RAND() *10000+1)
b=1
EXIT
endif
ENDSCAN
IF b=1
EXIT
ENDIF
ENDFOR
不知道这样算不算实现了功能
2013-05-01 16:05
2013-05-01 16:51
2013-05-01 16:58
2013-05-01 17:04
2013-05-01 20:39
2013-05-01 21:48