Saving document - Client crash

Lotus 6.5.1

After I use the combination of that formulas, An create severals docs the client crash in a button “Save and create new doc”:

@Command([FileSave]);

@Command([CloseWindow]);

@Commadn([Compose];“nombreFormulario”)

The reazon for I use that formulas is that I want to create severals documents without open a new window.

Somebory have an idea.

Thanks for your help.

Subject: Saving document - Client crash

The formula seems to be okay for me. There may be a glitch in Quesry Save or an event which might be making those crashes.

I am not having any with the exact formula as used by you. Infact I copied and pasted into my application and tested. the Notes/Domino version, I am using is also 6.5.1 on windows XP.

Try this way. Out of your 3 @commands, first try with the first two commands. Ie. Under save button, add

@Do(@Command([FileSave]); @Command([CloseWindow]));

Now test it. If it crashes again, try with only save command ie; Under save button, @Command([FileSave])

See if it crashes again. If it is still crashing, it is not an issue with these commands. Check any form events which might be the cause.

Subject: RE: Saving document - Client crash

O.k, that only happen with the 3 commands together, if I use only @Command([FileSave]);@Command([FileCloseWindow]),

all is fine, I don’t have any code in the Query Save, only this commands, but the diference is when I use the button “Save and Create new”, What i want is that the actual document save and open a new doc in the same window, the diference is when I use

@Command([CloseWindow]); inside @command([FileCoseWindow]),

If i use @command([FileCoseWindow]), the new doc appears in a new window, and I don’t want that.