wxf_xsfy 发表于 2007-4-12 22:18:03

robot可以从某一行脚本开始回放吗?

robot可以从某一行脚本开始回放吗?

feiyuw 发表于 2007-4-13 09:31:10

好像不行,我每次都是把前面的脚本注释掉的。

ebuluo 发表于 2007-5-9 10:07:45

明显是不可以地

5am 发表于 2007-5-9 10:45:51

用goto吧 很方便

wxf_xsfy 发表于 2007-5-11 12:43:13

GOTo
可以说得清楚些吗 是不是要在代码中作标记阿

5am 发表于 2007-5-11 14:07:10

比如在sub main后面加上"goto label1"

然后在你想要开始跑的那一行的前一行加上"label1:"

这样就会从label1: 后面的脚本开始跑了

仅限调试使用

geniar 发表于 2007-5-25 16:47:00

Sub main
   Dim str1 as String
   Dim answer as Integer
   Dim nextweek
   Dim msgtext
i: str1=InputBox$("Enter a date:")
   answer=IsDate(str1)
   If answer=-1 then
      str1=CVDate(str1)
      nextweek=DateValue(str1)+7
      msgtext="One week from the date entered is:"
      msgtext=msgtext & Format(nextweek,"dddddd")
      MsgBox msgtext
   Else
      MsgBox "Invalid date or format. Try again."
      GoTo i
   End If
End Sub

chaotiancaitl 发表于 2007-6-1 11:19:59

好,学习!
页: [1]
查看完整版本: robot可以从某一行脚本开始回放吗?