I have a form with a repeating subform. The coding I use for the 'Add
SubForm' button is;
topmostSubform.ContinuationSheet.ButtonAddSheet::click - (JavaScript,
client)ContinuationSheet.instanceManager.addInstance(1);ButtonReset.presence
= "hidden";ButtonSaveAs.presence = "hidden";ButtonPrint.presence =
"hidden";ButtonAddSheet.presence = "hidden";When the reset button is
pressed, it is suppose to not only reset all form data, but also reset
the SubForm count back to 0. The coding I use for that i...