Why does my code prompt a user to save?

I have a Save & Exit button on a form. The code is listed below. The problem is that the user gets prompted to save the document after clicking the Save & Exit button. I do not have a SaveOptions field on the form. This form uses no lotusscript. How can I eliminate the save prompt?

FIELD ReOpen := @DeleteField;

FIELD PreCall :=@False;

@Command([ViewRefreshFields]);

@Command([FileSave]);

@Command([FileCloseWindow])

Thanks a lot,

Quin

Subject: Why does my code prompt a user to save?

Try to use @PostedCommand instead of @Command

Subject: RE: Why does my code prompt a user to save?

That did it. Thanks for saving me from pulling my hair out. I need to read up on that command. Thanks Again, Quin