Need to open all forms in database edit, save and close

Dear Expert, I imagine this is not hard to do with an agent but I don’t know how to write it.

I need to be able to run a utility that will open all of the forms in my database, edit, save and then close them. I added a variable to the forms but need to do this so the new field will become search-able.

Thanks in advance, Paul

Subject: Use ToolsRefreshSelectedDocs

Create an agent with the below formula. Make sure the agent’s runtime target is set to ‘None’.

@Command([ToolsRefreshSelectedDocs]);

Select the documents you want to update and run this agent.

Subject: Thanks

Thank you, that worked perfectly.