About This Code
Brief Description:
Save and Create New Using the Same Form
Contributor:
Paul F Morris
Notes Version:
R6.x, R7.x
Last Modified:
04 May 2006
OpenNTF Disclaimer
All of the program code and information presented in the OpenNTF.org Code Bin are provided "as-is", and should be used at your own risk. OpenNTF.org make no express or implied warranty about anything in the Code Bin, and OpenNTF.org will not be responsible or liable for any damage caused by the use or misuse of anything from this site. OpenNTF.org makes no guarantees about anything. Please thoroughly test all of the knowledge and code you find here before you attempt to use them in your production environment.
Code / Description
This code can be used in a Shared Action when you want to save the current document, close the window, and compose a new document using the same form. I've seen many variations on this code but all other examples have the form name hard coded. By pulling the form name into a variable the code becomes generic and can then be Shared by all forms. An icon gif is provided as well.
Happy coding!
Usage / Example
tmp:=Form;
FIELD SaveOptions := 1;
@Command([FileSave]);
@Command([FileCloseWindow]);
@PostedCommand([Compose];"";tmp)
Code Attachments