At 12:47 PM 7/29/2005, Jan Johansen wrote:
Razzak, Cool demo. Question. There a three dynamic where clause examples. The 2 that use Company LIKE Company = give an error if you cancel before selecting. The error is correct but how would you suppress it?
Jan, Here's how: -- To suppress the error message for un-qualified lookup Example 01: PROPERTY <DBEditCompID> SuppressPopupErrorMessage 'TRUE' RETURN Example 02: PROPERTY <VarEditCompID> SuppressPopupErrorMessage 'TRUE' RETURN -- To allow the display of error message for un-qualified lookup Example 01: PROPERTY <DBEditCompID> SuppressPopupErrorMessage 'FALSE' RETURN Example 02: PROPERTY <VarEditCompID> SuppressPopupErrorMessage 'FALSE' RETURN That's all there is to it! Very Best R:egards, Razzak.
