SaveConfirmation - cWebBaseDEOServer

Default save confirmation message

Type: Procedure

Parameters: Handle hmCallBack

ParameterDescription
hmCallBackHandlef callback message to use


Syntax
Procedure SaveConfirmation Handle hmCallBack

Call: Send SaveConfirmation hmCallBack


Description

This is the default save confirmation message. You can use Verify_Save_Msg to specify a custom save confirmation message to use instead or to turn off the save confirmation.

Sample

This sample shows how to create a custom SaveConfirmation that is identical to the default class SaveConfirmation, but makes Yes the default button.

Procedure SaveConfirmation Handle hmCallBack
    Send ShowYesNo (Self) hmCallBack C_$SaveThisRecord  C_$Confirm cmYes
End_Procedure