SaveConfirmation - cWebBaseDEOServer
Default save confirmation message
Type: Procedure
Parameters
| Parameter | Type | Description |
|---|---|---|
| hmCallBack | Handle | Handlef callback message to use |
Syntax
Procedure SaveConfirmation Handle hmCallBack
Call Example
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