我有两张桌子,一张用于当前的机器,一张用于已完成的机器。我有一个带有按钮的页面,该按钮指向相关记录并指向机器表,如果我将该记录移动到 achive 表中,则该按钮不再起作用。
我可以创建一个脚本,该脚本基本上尝试转到机器表中的相关 roecord,而存档表中没有任何相关记录?
我有两张桌子,一张用于当前的机器,一张用于已完成的机器。我有一个带有按钮的页面,该按钮指向相关记录并指向机器表,如果我将该记录移动到 achive 表中,则该按钮不再起作用。
我可以创建一个脚本,该脚本基本上尝试转到机器表中的相关 roecord,而存档表中没有任何相关记录?
有几种方法可以做你想做的事,包括在你去之前检查相关记录:
If Count(current machines::index) > 0
Go to Related Record (from current machines)
Else If Count(archived machines::index) > 0
Go to Related Record (from archived machines)
Else
Error Message
End If
或者只是去一个相关的记录,看看是否找到任何东西:
Set Error Capture On // don't show an error message to the user
Go to Related Record (from current machines)
If Get(FoundCount) = 0
Go to Related Record (from archived machines)
End If
Set Error Capture Off