[求助]一个GUI检查点的判断问题
如果想要实现:一个检查点通过,则执行某个动作,应该怎么写?dim check as string(?)
if check=Result
then
....
end if
是这样的么?前面应该怎么写? 检查点的返回值result好像都是integer型的吧,你这个check定义成string有什么用 斑猪说的没错,验证点的功能是:
验证点如果正确,返回true; true=-1
验证点如果不正确,返回false; false=0 ? Originally posted by luckboys at 2005-4-6 04:13 PM:
斑猪说的没错,验证点的功能是:
验证点如果正确,返回true; true=-1
验证点如果不正确,返回false; false=0
好像是,验证点正确,result=1
验证点不正确,result=0
不知道我记得对么?!应该是吧! The function returns 1 if the action performed passes or 0 if the action performed fails.
--SQAbasic help 其中的函数大都是这样的
页:
[1]