Thanks for pointing me in the right direction on this. What I ended up
doing was adding javascript to my existing submit by email button. This
is not the submit by email button but just a regular button where I
changed the control type to submit. Under the first event tag, I added
the following second event:var rightNow = new
Date();form1.subform1.TextField8.rawValue =
(rightNow.toDateString()).substring(4,(rightNow.toDateString()).length)
+ " " + (rightNow.toTimeString()).substring(0,8);This
filled in the text field I created with the current time from the pc as
a static value, creating the timestamp I needed. Thanks again for your
help!