< Back

Document Subject: Dialog Cancel
Hint Short Cut: Add this to your code & documentation to help you find this page.
http://#DialogCancel or http://A555F9/nn.nsf/ByAlias/DialogCancel

How do you trap when cancel is pressed on a dialog box. Answer for @Formula and LotusScript.




How do you trap when cancel is pressed on a dialog box.

 

@Formula:

ret:=@DialogBox("Profile Options"; [AutoHorzFit] : [AutoVertFit] );

@if(ret=0; @return( @prompt([ok]; "Cancel"; "User pressed Cancel")); "");

 

LotusScript:

Dim uiw As New NotesUIWorkspace
ret=uiw.DialogBox("Po",True, True,False,True,False,False,"Po" )    
If ret=False Then  
     Msgbox "Cancel pressed!"          
     End          
End If