
Announcements
I have set one of my timers to Submit my Form to a SharePoint List every 1 second. I was wondering why it only works the first time the timer executes. Even though I have the timer on Repeat and Autostart.
Your timer only appears to be executing a Reset() when it ends - this will not submit a form. As well, the timer interval is set to once every 30 seconds.
To submit a form and prep it to run again, you need to execute at least:
SubmitForm(FormName);
ResetForm(FormName);
Without those, the form will not submit and it will not prep the conditions to be submitted again in the future.
Hope that helps,
Bryan