Property Handle Verify_Save_msg
Read Access: | Get Verify_Save_msg to HandleVariable |
Write Access: | Set Verify_Save_msg to HandleVariable/Value |
Specifies the message to use for record save confirmation.
The default value is SaveConfirmation.
This sample sets save confirmation to the default save confirmation message.
Set Verify_Save_Msg to (RefProc(SaveConfirmation))
This sample turns off the save confirmation.
Set Verify_Save_msg to 0
This sample sets save confirmation to a custom save confirmation message.
Procedure MySaveConfirmation Handle hmCallBack Send ShowYesNo (Self) hmCallBack "Really Save This Record?" "Save Confirmation" End_Procedure Set Verify_Save_Msg to (RefProc(MySaveConfirmation))
If you want to change the value of this property from it's class-level default value (for example, to make a particular view not cler after a save), you have to set this property in a data entry object (DEO) or data-aware container (e.g. cWebView) that has an explicit 'Set Server' statement, or the property value will not be used.