有两个文件有变量关联,怎么才能编译通过
test88.recSub Main
Dim Result As Integer
Result=9
End Sub
test89.rec
'$Include "test88.rec"
Sub main
'Initially Recorded: 2006-5-3017:05:55
'Script Name: test89
if Result=9 then
msgbox Result
end if
End Sub 包含在一起.. 我想通过两个文件实现。 不懂 我要实现的就是一个文件中的脚本要用到另一个文件中的变量值。 把变量写入到外部文件中存起来,另外一个脚本去读取. 谢谢。
不过通过include实现不了吗? 你应该先去搞清楚robot的一些文件类型和作用 不明白你这么做的目的是什么。
如果两个模块需要对同样的数据进行操作,可以使用全局变量 test88.sbl
Dim Result as integer
Function run()
Result = 9
End Function
'---------------------------
test99.rec
'$Include "test88.sbl"
Sub main
run
if Result=9 then
msgbox Result
end if
End Sub
我是这样解决的~~ 原帖由 popsmart 于 2006-6-5 23:23 发表
不明白你这么做的目的是什么。
如果两个模块需要对同样的数据进行操作,可以使用全局变量
页:
[1]