如何在继续执行代码之前等待其他表单关闭。我需要用户在处理其他信息之前验证一些数据。这是我的代码,但在显示表单后,它仍然继续运行其他代码
USE data\tblcashadvanceexemption ALIAS CA
**promp the user the excemption and user should validate the data
IF RECcount()>0
thisform.Hide()
DO FORM frmcaapproval
ENDIF
答案 0 :(得分:3)
通过将其WindowType属性设置为1来创建第二个表单模式。
玛