I would like some help with a form that I am having some trouble with. The form is calculating a score as series of questions are being answered. The Total Score being calculated works fine but when the form is opened after it has been placed On Hold, the Total Score does not reflect the same as it was prior to placing the form On Hold. Anyone know what I am missing?
What does your calculation function look like?
This sounds like an variable initialization problem. If you initialize the score on loading, it will be initialized not only with the first load, but every subsequent load including loading after the document is put on hold. If this indeed is the issues, create a document variable with the initial load, i.e. document.form_loaded, set it in the initialization segment, then subsequently test for this on reloading the form:
{ ! if document.form_loaded=="" then
..... initialize all variables....
document.form_loaded="yes"
endif
}