Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Close Dialog Box

Status
Not open for further replies.

DMonroe

Technical User
Dec 6, 2002
2
US
I'm Creating a survey in Domino Designer and need to create a submit button so the one who needs to fill out the survey does, and hits a submit button that sends the mail back to a designated e-mail address. The problem I'm having is that an extra dialog box comes up in the users window asking to Save and Send, Send, Save, or Discard changes and I want to select discard changes in the dialog box.
Here is what I have so far:
@Command([EditSelectAll]);
@Command([EditCopy]);
@Command([FileCloseWindow]);
@Command([MailComposeMemo]);
@Command([EditInsertText]); "An E-Mail Address");
@Command([EditNextField]);
@Command([EditNextField]);
@Command([EditNextField]);
@Command([EditInsertText]); "Response - Survey");
@Command([EditNextField]);
@Command([EditInsertText]; @Command([EditPaste]));
@Command([MailSend]);
@Command([FileCloseWindow])

I was thinking a SaveOptions command would work, but I can't get it to function properly.
Any help would be great.
Thanks
 
Sorry for the delay, I hope this will still help you. Normally, the Send/Save dialog box is governed by a property of the Form : Present mail send dialog.
This property is available on the second tab of the Forms Properties (the propeller head tab).
Unchecking it for your form should eliminate the Send/Save dialog box.

Pascal.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top