2011年7月20日
摘要: class flow_step dim tbname '公有成员变量,只能在类的函数内赋值 dim form_id private stype '私有成员变量,只能在类的函数内赋值 'const max_len只能在类的函数内使用const dim my_array(2) '定义数组 '构造函数,可以在这里为成员变量进行初始化赋值 private sub class_initialize() tbname="" form_id=1 stype=0 my_array(0)="Jan" my_array(1)=&quo 阅读全文
posted @ 2011-07-20 17:30 林枫山 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 1.释放变量 flow_name="" flow_name=empty flow_name=null 释放对象 set rs=nothing dim赋值 dim a:a=1 2.截取最后一个字符 str=left(str,len(str)-1) 截取第一个字符 str=right(str,len(s 阅读全文
posted @ 2011-07-20 12:12 林枫山 阅读(452) 评论(0) 推荐(0) 编辑