脚本处理控件源码,支持的脚本格式有:Pascal,C++,JScript,Basic

源代码在线查看: is.vb

软件大小: 242 K
上传用户: apsdn
关键词: JScript Pascal Basic 脚本
下载地址: 免注册下载 普通下载 VIP

相关代码

				' FastScript v1.0          
				' 'is' operator demo       
				
				
				dim o, p
				
				  o = new TObject
				  p = new TPersistent
				  if o is TObject then
				    ShowMessage("o is TObject")
				  end if
				  if p is TObject then
				    ShowMessage("p is TObject")
				  end if
				  if not (o is TPersistent) then
				    ShowMessage("o is not TPersistent")
				  end if
							

相关资源