Hello again,
Need some help again with an issue. Need to know if there is a way to save and continue on a form. Meaning…save the current form…then have a blank new form open.
I may just be having a moment but any help with this would be great.
Thank in advance for looking and help.
Subject: Saving a form and opening a new one
web or client? how are you saving your form/doc? r u using script or formula?
Subject: RE: Saving a form and opening a new one
Client. and this is the formula i have now.
strLookupKey := Initials1;
strViewName := “(cube review)”;
intColumnNumber := 2;
strUNID := @DbLookup(“”; “”; strViewName; strLookupKey; intColumnNumber;[FailSilent]);
strFieldNameToUpdate := “CubeCB”;
strNewValue := Newlocation;
@SetDocField(strUNID; strFieldNameToUpdate; strNewValue);
@PostedCommand([FileCloseWindow]);
@Command([FileSave])
Subject: RE: Saving a form and opening a new one
just add this after your FileSave
@PostedCommand([Compose]; “”; " ")