Question : Clear Fields in Lotus Notes

Have a quick question. I have a form with and action that saves the form, but I want the action to also clear the fields so they can submit a new record. What is the best way to do this?

This is what I have so far.

Thanks in advance.
1:
2:
3:
4:
@Prompt([Ok]; "Thank you."; "Asset Added");
@Command([FileSave]);
@Command([FileCloseWindow]);
@Command([Compose];"Test")

Answer : Clear Fields in Lotus Notes

Your code was almost right. The @PostedCOmmand ensures that the compose runs after the save and close.
1:
2:
3:
4:
@Prompt([Ok]; "Thank you."; "Asset Added");
@Command([FileSave]);
@Command([FileCloseWindow]);
@PostedCommand([Compose];"Test")
Random Solutions  
 
programming4us programming4us