Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个由数据块查询填充的表单。
假设我有一个 EMPLOYEE 表,其中包含“ID”和“NAME”列。
从 EMPLOYEE 中选择 ID、NAME;
如何在表单加载时自动触发它(并且是否有设计用于执行此操作的属性或触发器?)?
没有自动执行此操作的方法,因此您需要导航到数据库块(如果此块不是表单的第一个导航数据块),然后执行查询表单表单内置的 Execute_Query。例如,这可以在表单级触发器When-New-Form-Instance 中完成:
Go_Block(<name of your database block>); Execute_Query;