hcl-bot
December 13, 2007, 8:17am
1
Attempting to refresh a form by clearing the fields. I am using the formula below in a button…
@SetField (“saveoptions”; 0);
@Command ([CloseWindow]);
@Command ([Compose]; “”; “form1”)
…but am prompted with an “Invalid or Non-Existent Document” error when attempting to refresh. Any ideas?
hcl-bot
December 13, 2007, 8:22am
2
Subject: Invalid or Non-Existent Document
Does “form1” exist as a form within the current database?
Kiers
hcl-bot
December 13, 2007, 8:23am
3
Subject: RE: Invalid or Non-Existent Document
Yes it does. Its the form that is being used and Im simply trying to refresh the form and clear the fields by closing the current form and opening a new one.
hcl-bot
December 13, 2007, 12:34pm
4
Subject: Invalid or Non-Existent Document
try:
@Command ([Compose]; “form1”)
hcl-bot
December 13, 2007, 9:21am
5
Subject: Invalid or Non-Existent Document
SaveOptions is a text field - try:
@SetField (“SaveOptions”; “0”)
hcl-bot
December 13, 2007, 11:18am
6
Subject: RE: Invalid or Non-Existent Document
same error unfortunately